Submission #3518979


Source Code Expand

#include <bits/stdc++.h>
#define rep(i, n) for (rint i = 1; i <= (n); i ++)
#define re0(i, n) for (rint i = 0; i < (int) n; i ++)
#define travel(i, u) for (rint i = head[u]; i; i = e[i].nxt)
#define rint register int
using namespace std;
 
template<typename tp> inline void read(tp &x) {
  x = 0; char c = getchar(); int f = 0;
  for (; c < '0' || c > '9'; f |= c == '-', c = getchar());
  for (; c >= '0' && c <= '9'; x = (x << 3) + (x << 1) + c - '0', c = getchar());
  if (f) x = -x;
}
#define sqr(x) ((x) * (x))
#define db double
const int N = 16;
const int ST = 1 << (N + 1);
db x[N], y[N], a[N], d[N][N];
db sum[ST], dp[ST], f[ST];
int n;

int main(void) {
  cin >> n;
  re0 (i, n) {
    cin >> x[i] >> y[i] >> a[i];
  }
  int all = 1 << n;
  re0 (st, all) re0 (i, n) if (st >> i & 1) sum[st] += a[i];
  re0 (i, n) re0 (j, n)
    d[i][j] = sqrt(sqr(x[i] - x[j]) + sqr(y[i] - y[j]));
  fill(dp, dp + all, 1e18);
  re0 (st, all) {
    if (__builtin_popcount(st) <= 1) dp[st] =0;
    re0 (i, n) re0 (j, n)
    if (st >> i & 1 && !(st >> j & 1))
      dp[st | 1 << j] = min(dp[st | 1 << j], dp[st] + d[i][j]);
  }
  // re0 (st, all) cout << sum[st] << " "; cout << "\n";
  // re0 (st, all) cout << dp[st] << " "; cout << "\n";
  re0 (st, all) {
    f[st] = (sum[st] - dp[st]) / __builtin_popcount(st);
    for (int S = st; S; S = (S - 1) & st)
      f[st] = max(f[st], min(f[S], f[S ^ st]));
  }
  printf("%.10f\n", f[all - 1]);
}

Submission Info

Submission Time
Task E - Water Distribution
User foreverpiano
Language C++14 (GCC 5.4.1)
Score 1000
Code Size 1479 Byte
Status AC
Exec Time 81 ms
Memory 1024 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 1000 / 1000
Status
AC × 2
AC × 46
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 AC 79 ms 1024 KB
001.txt AC 78 ms 1024 KB
002.txt AC 76 ms 1024 KB
003.txt AC 78 ms 1024 KB
004.txt AC 80 ms 1024 KB
005.txt AC 77 ms 1024 KB
006.txt AC 80 ms 1024 KB
007.txt AC 77 ms 1024 KB
008.txt AC 79 ms 1024 KB
009.txt AC 79 ms 1024 KB
010.txt AC 80 ms 1024 KB
011.txt AC 80 ms 1024 KB
012.txt AC 79 ms 1024 KB
013.txt AC 77 ms 1024 KB
014.txt AC 80 ms 1024 KB
015.txt AC 81 ms 1024 KB
016.txt AC 77 ms 1024 KB
017.txt AC 80 ms 1024 KB
018.txt AC 79 ms 1024 KB
019.txt AC 77 ms 1024 KB
020.txt AC 74 ms 1024 KB
021.txt AC 76 ms 1024 KB
022.txt AC 75 ms 1024 KB
023.txt AC 74 ms 1024 KB
024.txt AC 74 ms 1024 KB
025.txt AC 73 ms 1024 KB
026.txt AC 75 ms 1024 KB
027.txt AC 74 ms 1024 KB
028.txt AC 74 ms 1024 KB
029.txt AC 74 ms 1024 KB
030.txt AC 74 ms 1024 KB
031.txt AC 74 ms 1024 KB
032.txt AC 73 ms 1024 KB
033.txt AC 73 ms 1024 KB
034.txt AC 73 ms 1024 KB
035.txt AC 73 ms 1024 KB
036.txt AC 73 ms 1024 KB
037.txt AC 73 ms 1024 KB
038.txt AC 73 ms 1024 KB
039.txt AC 73 ms 1024 KB
040.txt AC 1 ms 256 KB
041.txt AC 1 ms 256 KB
042.txt AC 1 ms 256 KB
043.txt AC 1 ms 256 KB
example0.txt AC 1 ms 256 KB
example1.txt AC 75 ms 1024 KB