Submission #765758

#TimeUsernameProblemLanguageResultExecution timeMemory
765758SanguineChameleonShortcut (IOI16_shortcut)C++17
23 / 100
2060 ms332 KiB
#include "shortcut.h" #include <bits/stdc++.h> using namespace std; const int maxn = 1e6 + 20; const long long inf = 1e18L; long long len[maxn]; int depth[maxn]; int n, c; long long calc(long long lim) { long long res = inf; for (int x = 1; x <= n; x++) { for (int y = x + 1; y <= n; y++) { long long mx = 0; for (int i = 1; i <= n; i++) { for (int j = i + 1; j <= x; j++) { if (len[j] - len[i] + depth[i] + depth[j] > lim) { mx = max(mx, inf); } } } for (int i = y; i <= n; i++) { for (int j = i + 1; j <= n; j++) { if (len[j] - len[i] + depth[i] + depth[j] > lim) { mx = max(mx, inf); } } } for (int i = 1; i <= x; i++) { for (int j = x + 1; j <= y; j++) { long long d1 = len[y] - len[x] + c - (len[j] - len[x]) + len[x] - len[i] + depth[i] + depth[j]; long long d2 = len[j] - len[i] + depth[i] + depth[j]; if (d2 > lim) { mx = max(mx, d1); } } } for (int i = x; i <= y - 1; i++) { for (int j = y; j <= n; j++) { long long d1 = len[y] - len[x] + c - (len[y] - len[i]) + len[j] - len[y] + depth[i] + depth[j]; long long d2 = len[j] - len[i] + depth[i] + depth[j]; if (d1 > lim && d2 > lim) { mx = max(mx, d1); } } } for (int i = x; i <= y; i++) { for (int j = i + 1; j <= y; j++) { long long d1 = len[y] - len[x] + c - (len[j] - len[i]) + depth[i] + depth[j]; long long d2 = len[j] - len[i] + depth[i] + depth[j]; if (d1 > lim && d2 > lim) { mx = max(mx, d1); } } } for (int i = 1; i <= x; i++) { for (int j = y; j <= n; j++) { long long d1 = len[j] - len[i] - (len[y] - len[x]) + c + depth[i] + depth[j]; long long d2 = len[j] - len[i] + depth[i] + depth[j]; if (d1 > lim && d2 > lim) { mx = max(mx, d1); } } } res = min(res, mx); } } return res; } long long find_shortcut(int _n, vector<int> _len, vector<int> _depth, int _c) { n = _n; c = _c; len[1] = 0; for (int i = 2; i <= n; i++) { len[i] = len[i - 1] + _len[i - 2]; } for (int i = 1; i <= n; i++) { depth[i] = _depth[i - 1]; } long long res = -1; long long lt = 0; long long rt = inf; while (lt <= rt) { long long mt = (lt + rt) / 2; if (calc(mt) <= mt) { res = mt; rt = mt - 1; } else { lt = mt + 1; } } return res; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...