Submission #3709765


Source Code Expand

#include<bits/stdc++.h>
using namespace std;
const int N=16;
double dis[N][N],f[1<<N],x[N],y[N],a[N]; 
int n,m;
int main()
{
	cin>>n;
	for(int i=1;i<=n;i++){
		cin>>x[i]>>y[i]>>a[i];
	}
	for(int i=1;i<=n;i++)
		for(int j=1;j<=n;j++) dis[i][j]=sqrt((x[i]-x[j])*(x[i]-x[j])+(y[i]-y[j])*(y[i]-y[j]));
	for(int i=0;i<=1<<n;i++) f[i]=1e18;
	f[0]=0;
	for(int i=0;i<1<<n;i++) f[1<<i]=0;
	for(int s=0;s<1<<n;s++){
		for(int i=0;i<=n-1;i++)
			for(int j=0;j<=n-1;j++)
				if((s&(1<<i))&&(!(s&(1<<j)))) f[s|(1<<j)]=min(f[s|(1<<j)],f[s]+dis[i+1][j+1]);
	}
	for(int s=0;s<1<<n;s++){
		f[s]=-f[s];
		for(int i=0;i<n;i++)if(s&(1<<i)) f[s]+=a[i+1];
		f[s]/=(double)__builtin_popcount(s);
		for(int t=(s-1)&s;t;t=(t-1)&s)
			f[s]=max(f[s],min(f[t],f[s-t]));
	}
	printf("%.10lf\n", f[(1<<n)-1]);
}

Submission Info

Submission Time
Task E - Water Distribution
User victorique
Language C++14 (GCC 5.4.1)
Score 0
Code Size 809 Byte
Status RE
Exec Time 102 ms
Memory 512 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 1000
Status
AC × 1
RE × 1
AC × 4
RE × 42
Set Name Test Cases
Sample example0.txt, example1.txt
All 000.txt, 001.txt, 002.txt, 003.txt, 004.txt, 005.txt, 006.txt, 007.txt, 008.txt, 009.txt, 010.txt, 011.txt, 012.txt, 013.txt, 014.txt, 015.txt, 016.txt, 017.txt, 018.txt, 019.txt, 020.txt, 021.txt, 022.txt, 023.txt, 024.txt, 025.txt, 026.txt, 027.txt, 028.txt, 029.txt, 030.txt, 031.txt, 032.txt, 033.txt, 034.txt, 035.txt, 036.txt, 037.txt, 038.txt, 039.txt, 040.txt, 041.txt, 042.txt, 043.txt, example0.txt, example1.txt
Case Name Status Exec Time Memory
000.txt RE 100 ms 512 KB
001.txt RE 99 ms 512 KB
002.txt RE 102 ms 512 KB
003.txt RE 102 ms 512 KB
004.txt RE 101 ms 512 KB
005.txt RE 101 ms 512 KB
006.txt RE 100 ms 512 KB
007.txt RE 102 ms 512 KB
008.txt RE 102 ms 512 KB
009.txt RE 99 ms 512 KB
010.txt RE 101 ms 512 KB
011.txt RE 100 ms 512 KB
012.txt RE 100 ms 512 KB
013.txt RE 100 ms 512 KB
014.txt RE 99 ms 512 KB
015.txt RE 100 ms 512 KB
016.txt RE 100 ms 512 KB
017.txt RE 101 ms 512 KB
018.txt RE 99 ms 512 KB
019.txt RE 100 ms 512 KB
020.txt RE 101 ms 512 KB
021.txt RE 99 ms 512 KB
022.txt RE 100 ms 512 KB
023.txt RE 99 ms 512 KB
024.txt RE 101 ms 512 KB
025.txt RE 100 ms 512 KB
026.txt RE 102 ms 512 KB
027.txt RE 101 ms 512 KB
028.txt RE 99 ms 512 KB
029.txt RE 99 ms 512 KB
030.txt RE 99 ms 512 KB
031.txt RE 99 ms 512 KB
032.txt RE 99 ms 512 KB
033.txt RE 99 ms 512 KB
034.txt RE 99 ms 512 KB
035.txt RE 99 ms 512 KB
036.txt RE 99 ms 512 KB
037.txt RE 99 ms 512 KB
038.txt RE 99 ms 512 KB
039.txt RE 98 ms 512 KB
040.txt AC 1 ms 256 KB
041.txt AC 1 ms 256 KB
042.txt AC 1 ms 256 KB
043.txt RE 100 ms 256 KB
example0.txt AC 1 ms 256 KB
example1.txt RE 99 ms 512 KB