# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
180307 | rzbt | Bigger segments (IZhO19_segments) | C++14 | 281 ms | 53240 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define mp make_pair
#define pb push_back
#define F first
#define S second
#define all(x) x.begin(),x.end()
#define MAXN 500005
typedef long long ll;
using namespace std;
ll n;
ll mz=0;
ll tz=0;
ll niz[MAXN];
pair<ll,ll> dp[MAXN];
ll pref[MAXN];
ll res[MAXN];
set<pair<ll,ll> > s;
int main()
{
scanf("%lld", &n);
for(ll i=1;i<=n;i++){
scanf("%lld",niz+i);
pref[i]=pref[i-1]+niz[i];
}
//dp[i]=mp(pref[i],1);
ll dokle=0;
for(ll i=1;i<=n;i++){
//if(!s.empty())printf(" %d %d\n")
while(!s.empty() && s.begin()->F<=pref[i]){
dokle=max(dokle,s.begin()->S);
s.erase(s.begin());
}
//printf("%lld %lld\n",i,dokle);
dp[i]=mp(pref[i]-pref[dokle],res[dokle]+1);
res[i]=max(res[i-1],dp[i].S);
s.insert(mp(dp[i].F+pref[i],i));
}
printf("%lld",res[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... |