| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 173596 | juggernaut | Bigger segments (IZhO19_segments) | C++14 | 301 ms | 94676 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//Just try and the idea will come
#include<bits/stdc++.h>
#define int long long int
#define fr first
#define sc second
using namespace std;
int pref[500001],i,n,l,r,m,sp[500001][20],logs[500001],j;
pair<int,int>dp[500001];
int get(int l,int r){
int len=logs[r-l+1];
return min(sp[l][len],sp[r-(1ll<<len)+1][len]);
}
main(){
for(i=2;i<500001;i++)logs[i]=logs[i>>1]+1;
for(i=1;i<500001;i++)
for(j=0;j<20;j++)sp[i][j]=1e15;
scanf("%lld",&n);
for(i=1;i<=n;i++){
scanf("%lld",&pref[i]);
pref[i]+=pref[i-1];
}
for(i=1;i<=n;i++){
l=0,r=i-1;
while(l<r){
m=(l+r+1)>>1;
if(pref[i]>=get(m,i-1))l=m;
else r=m-1;
}
dp[i]={dp[l].fr+1,pref[i]-pref[l]};
j=1;
sp[i][0]=dp[i].sc+pref[i];
while(i-(1ll<<j)+1>=0){
sp[i-(1ll<<j)+1][j]=min(sp[i-(1ll<<(j-1))+1][j-1],sp[i-(1ll<<j)+1][j-1]);
j++;
}
}
printf("%lld",dp[n].fr);
}
컴파일 시 표준 에러 (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... | ||||
