Submission #141617

#TimeUsernameProblemLanguageResultExecution timeMemory
141617abacabaLightning Conductor (POI11_pio)C++14
45 / 100
186 ms9212 KiB
#include <bits/stdc++.h> using namespace std; #define max3(a, b, c) max(a, max(b, c)) #define min3(a, b, c) min(a, min(b, c)) #define mp make_pair #define f first #define se second #define pb push_back #define ppb pop_back #define ll long long #define ull unsigned long long #define cntbit(x) __builtin_popcount(x) #define endl '\n' #define uset unordered_set #define umap unordered_map #define pii pair<int, int> #define ld long double #define pll pair<long long, long long> struct point { int i, l, r; }; const int N = 5e5 + 15; int n, a[N], dp[N]; deque <point> q; inline double get(int j, int i) { return a[i] + sqrt(abs(i - j)); } void process() { q.clear(); for(int i = 1; i <= n; ++i) { if(!q.empty()) ++q.front().l; while(!q.empty() && q.front().r < q.front().l) q.pop_front(); while(!q.empty() && get(q.back().l, q.back().i) < get(q.back().l, i)) q.pop_front(); if(q.empty()) q.push_back({i, i, n}); else if(get(n, i) > get(n, q.back().i)) { int l = q.back().l, r = q.back().r, res = 0; while(l <= r) { int mid = l + r >> 1; if(get(mid, i) > get(mid, q.back().i)) res = mid, r = mid - 1; else l = mid + 1; } q.back().r = res - 1; q.push_back({i, res, n}); } dp[i] = max(dp[i], (int)ceil(get(i, q.front().i)) - a[i]); } } int main() { scanf("%d", &n); for(int i = 1; i <= n; ++i) scanf("%d", &a[i]); process(); reverse(a + 1, a + 1 + n); reverse(dp + 1, dp + 1 + n); process(); for(int i = n; i; --i) printf("%d\n", dp[i]); return 0; }

Compilation message (stderr)

pio.cpp: In function 'void process()':
pio.cpp:47:17: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
     int mid = l + r >> 1;
               ~~^~~
pio.cpp: In function 'int main()':
pio.cpp:62:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d", &n);
  ~~~~~^~~~~~~~~~
pio.cpp:64:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d", &a[i]);
   ~~~~~^~~~~~~~~~~~~
#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...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...