제출 #886910

#제출 시각아이디문제언어결과실행 시간메모리
886910Zero_OP쌀 창고 (IOI11_ricehub)C++14
100 / 100
21 ms3676 KiB
#include<bits/stdc++.h> using namespace std; #define range(v) begin(v), end(v) #define compact(v) v.erase(unique(range(v)), end(v)) template<class T> bool minimize(T& a, T b){ if(a > b) return a = b, true; return false; } template<class T> bool maximize(T& a, T b){ if(a < b) return a = b, true; return false; } typedef long long ll; typedef unsigned long long ull; typedef long double ld; const int N = 1e5 + 5; int n, lim, x[N]; ll c, s[N]; ll f(int l, int r){ if(l == r) return 0; ll avg = x[l + r >> 1]; int pos = l + r >> 1; int halfLeft = pos - l + 1; int halfRight = r - l + 1 - halfLeft; return (1LL * halfLeft * avg - (s[pos] - s[l - 1])) + ((s[r] - s[pos]) - 1LL * halfRight * avg); } int besthub(int R, int L, int X[0], ll B){ n = R, lim = L; c = B; for(int i = 0; i < n; ++i){ x[i + 1] = X[i]; s[i + 1] = s[i] + X[i]; } int ans = 0; for(int i = 1; i <= n; ++i){ int l = 1, r = i, j = -1; while(l <= r){ int mid = l + r >> 1; if(f(mid, i) <= c) j = mid, r = mid - 1; else l = mid + 1; } maximize(ans, i - j + 1); } return ans; }

컴파일 시 표준 에러 (stderr) 메시지

ricehub.cpp: In function 'll f(int, int)':
ricehub.cpp:28:16: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
   28 |   ll avg = x[l + r >> 1];
      |              ~~^~~
ricehub.cpp:29:15: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
   29 |   int pos = l + r >> 1;
      |             ~~^~~
ricehub.cpp: In function 'int besthub(int, int, int*, ll)':
ricehub.cpp:47:21: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
   47 |         int mid = l + r >> 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...