이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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 time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |