Submission #284027

#TimeUsernameProblemLanguageResultExecution timeMemory
284027Haunted_CppRice Hub (IOI11_ricehub)C++17
0 / 100
5 ms768 KiB
#include "ricehub.h" #include <bits/stdc++.h> using namespace std; typedef long long i64; int besthub(int R, int L, int X[], i64 B) { vector<i64> pre(R), suf(R); pre[0] = 0; for (int i = 1; i < R; i++) { pre[i] = pre[i - 1] + (X[i] - X[i - 1]); } suf.back() = 0; for (int i = R - 2; ~i; i--) { suf[i] = suf[i + 1] + (X[i + 1] - X[i]); } auto range_sum = [&](const vector<i64> &dp, int lo, int hi, bool is_suf) { if (!is_suf) return dp[hi] - dp[lo]; return dp[lo] - dp[hi]; }; auto ok = [&](int how_many) { for (int i = 0; i <= R - how_many; i++) { const int lo = i; const int hi = i + how_many - 1; const int mid = lo + (hi - lo) / 2; i64 dist = 0; // Right side dist += range_sum(pre, mid, hi, false); // Left side dist += range_sum(suf, lo, mid, true); if (dist <= B) return true; } return false; }; int lo = 0, hi = R + 7; while(lo < hi) { const int mid = lo + (hi - lo) / 2; if (!ok(mid)) hi = mid; else lo = mid + 1; } return hi - 1; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...