# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
497434 | Nalrimet | Bigger segments (IZhO19_segments) | C++17 | 9 ms | 12108 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#pragma GCC optimization("g", on)
#pragma GCC optimize ("inline")
#pragma GCC optimization("03")
#pragma GCC optimization("unroll-loops")
#pragma comment(linker, "/stack:200000000")
#pragma GCC optimize("Ofast")
#define ll long long
#define pb push_back
#define F first
#define S second
using namespace std;
const int N = 5 * 1e5 + 5;
const int inf = 1e9 + 7;
long long a[N], pref[N], dp[N], mn[N];
vector<int> v[N];
int n, old;
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
cin >> n;
v[0].pb(0);
//8
//7 2 3 5 1 4 6 10
for(int i = 1; i <= n; ++i){
cin >> a[i];
pref[i] = pref[i - 1] + a[i];
dp[i] = max(1ll, dp[i - 1]);
mn[i] = inf;
old = dp[i - 1];
for(auto to : v[old]){
if(pref[i] >= mn[to]){
dp[i] = old + 1;
mn[i] = min(mn[i], 2 * pref[i] - pref[to]);
}
}
if(dp[i] == old){
for(auto to : v[old - 1]){
if(pref[i] >= mn[to]){
mn[i] = min(mn[i], 2 * pref[i] - pref[to]);
}
}
}
if(mn[i] == inf){
mn[i] = mn[i - 1] + a[i] * 2;
}
v[dp[i]].pb(i);
}
cout << dp[n];
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... |