# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
501121 | NachoLibre | Bigger segments (IZhO19_segments) | C++17 | 1 ms | 336 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ll long long
#define ld long double
#define sz(x) ((int)(x).size())
#define all(x) (x).begin(), (x).end()
using namespace std;
const int N = 500005;
int n, b[N][2];
ll a[N];
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
cin >> n;
for(int i = 1; i <= n; ++i) {
cin >> a[i];
a[i] += a[i - 1];
} a[n + 1] = 1e17;
b[1][0] = 1; b[1][1] = 0;
int x = 0, y = 0;
for(int i = 1; i <= n; ++i) {
if(b[i][0] >= x) { x = b[i][0]; y = b[i][1]; }
int l = i + 1, r = n + 1;
while(l < r) {
int m = l + r >> 1;
if(a[m] - a[i] >= a[i] - a[y]) r = m;
else l = m + 1;
}
if(x + 1 >= b[l][0]) { b[l][0] = x + 1; b[l][1] = i; }
// cout << i << " " << x << " " << y << endl;
}
cout << x << endl;
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |