Submission #788545

#TimeUsernameProblemLanguageResultExecution timeMemory
788545fatemetmhrShortcut (IOI16_shortcut)C++17
71 / 100
2051 ms5120 KiB
// ~ Be Name Khoda ~ // #include "shortcut.h" //#pragma GCC optimize ("O3") //#pragma GCC target("avx2") #pragma GCC optimize("unroll-loops,Ofast") #include <bits/stdc++.h> using namespace std; mt19937 rng(chrono::steady_clock::now().time_since_epoch().count()); typedef long long ll; #define pb push_back #define mp make_pair #define all(x) x.begin(), x.end() #define fi first #define se second const int maxn = 1e6 + 10; const int maxn5 = 3e5 + 10; const int maxnt = 1.2e6 + 10; const int maxn3 = 1e3 + 10; const ll mod = 1e9 + 7; const int lg = 20; const ll inf = 1e18; int n; ll c; vector <ll> d; ll ps[maxn5]; vector <pair<pair<ll, int>, pair<ll, ll>>> av; // c + d[i] + ps[i] - ps[a] + cons - ps[b] <= lim // d[i] + ps[i] + cons <= lim - c + ps[b] + ps[a] struct RMQ{ ll mx[lg][maxn5]; void build(int n){ for(int i = 1; i < lg; i++) for(int j = 0; j < n; j++) mx[i][j] = max(mx[i - 1][j], j + (1 << (i - 1)) < n ? mx[i - 1][j + (1 << (i - 1))] : -inf); } ll get_max(int l, int r){ int k = 31 - __builtin_clz(r - l + 1); return max(mx[k][l], mx[k][r - (1 << k) + 1]); } } rmq[2][2]; bool check2(int a, int b, int ty, ll lim){ //cout << "for " << a << ' ' << b << ' ' << ty << ' ' << lim << endl; //cout << rmq[0][ty].get_max(a, n - 1) << ' ' << lim - c + (ty ? -1 : 1) * ps[b] - ps[a] << endl; if(rmq[0][ty].get_max(a, n - 1) > lim - c + (ty ? -1 : 1) * ps[b] + ps[a]) return false; if(rmq[1][ty].get_max(0, a) > lim - c + (ty ? -1 : 1) * ps[b] - ps[a]) return false; //cout << "result in true " << endl; return true; } bool check(ll lim){ //cout << "************** in lim " << lim << endl; for(int i = 0; i < n; i++){ ll cons[2] = {-inf, -inf}; for(auto [p, x] : av) if(p.se != i && p.fi + d[i] - ps[i] > lim){ cons[0] = max(cons[0], x.fi); cons[1] = max(cons[1], x.se); } //cout << "in " << i << ' ' << pt << ' ' << av.size() << endl; //cout << i << ' ' << cons[0] << ' ' << cons[1] << endl; for(int x = 0; x < 2; x++) for(int y = 0; y < 2; y++) rmq[x][y].mx[0][i] = d[i] + cons[y] + ps[i] * (x ? -1 : 1); } rmq[0][0].build(n); rmq[0][1].build(n); rmq[1][0].build(n); rmq[1][1].build(n); for(int i = 0; i < n; i++){ int lo = i, hi = n; while(hi - lo > 1){ int mid = (lo + hi) >> 1; if(check2(i, mid, 0, lim)) hi = mid; else lo = mid; } int l = max(i + 1, hi); lo = i; hi = n; while(hi - lo > 1){ int mid = (lo + hi) >> 1; if(check2(i, mid, 1, lim)) lo = mid; else hi = mid; } int r = min(n, lo); //cout << "ok " << i << ' ' << l << ' ' << r << endl; if(l <= r) return true; } return false; /* for(int i = 0; i < n; i++) if(pt[i] < av[i].size()){ int b = 0; for(auto [w, a] : srt[i]){ while(b + 1 < n && c + d[i] + w + av[i][pt[i]].se.fi - ps[b] > lim) b++; l[a] = max(l[a], b); } b = n - 1; for(auto [w, a] : srt[i]){ while(b && c + d[i] + w + av[i][pt[i]].se.se + ps[b] > lim) b--; r[a] = min(r[a], b); } /* int lo = i, hi = n; while(hi - lo > 1){ int mid = (lo + hi) >> 1; if(check(i, mid, 0, lim)) hi = mid; else lo = mid; } l = max(i + 1, hi); lo = i; hi = n; while(hi - lo > 1){ int mid = (lo + hi) >> 1; if(check(i, mid, 1, lim)) lo = mid; else hi = mid; } r = min(n, lo); //////cout << "ok " << lim << ' ' << i << ' ' << l << ' ' << r << endl; if(l <= r) return true; /* bool re = true; for(int j = 0; j < n && re; j++) for(int k = j + 1; k < n && re; k++) if(dis(j, k) + d[j] + d[k] > lim){ ll dis1 = dis(i, j); ll need = lim - c - d[j] - d[k] - dis1; if(need < 0) re = false; int ptl = k - (upper_bound(all(av[k][0]), need) - av[k][0].begin() - 1); int ptr = k + (upper_bound(all(av[k][1]), need) - av[k][1].begin() - 1); l = max(l, ptl); r = min(r, ptr); //////cout << lim << ' ' << i << ' ' << j << ' ' << k << ' ' << l << ' ' << r << endl; if(l > r) re = false; } if(re) return true; } */ } long long find_shortcut(int N, std::vector<int> l, std::vector<int> D, int C) { n = N; c = C; for(auto u : D) d.pb(u); ps[0] = 0; for(int i = 0; i < n; i++){ if(i) ps[i] = ps[i - 1] + l[i - 1]; av.pb({{d[i] + ps[i], i}, {d[i] + ps[i], d[i] - ps[i]}}); } /* for(int i = 0; i < n; i++){ for(int j = i + 1; j < n; j++) av[i].pb({dis(i, j) + d[i] + d[j], {d[j] + ps[j], d[j] - ps[j]}}); //if(i == 1) // ////cout << av[i][1].back().se << ' ' << av[i][1].back().fi << endl; sort(all(av[i])); for(int j = int(av[i].size()) - 2; j >= 0; j--){ //if(i == 1) // ////cout << j << endl; av[i][j].se.fi = max(av[i][j].se.fi, av[i][j + 1].se.fi); av[i][j].se.se = max(av[i][j].se.se, av[i][j + 1].se.se); } //if(i == 1) // ////cout << av[i][1].back().se << ' ' << av[i][1].back().fi << endl; } */ ll lo = -1, hi = mod * (n + 3); while(hi - lo > 1){ ll mid = (lo + hi) >> 1; if(check(mid)) hi = mid; else lo = mid; } return hi; }

Compilation message (stderr)

shortcut.cpp:129:9: warning: "/*" within comment [-Wcomment]
  129 |         /*
      |          
shortcut.cpp:155:9: warning: "/*" within comment [-Wcomment]
  155 |         /*
      |
#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...