Submission #173587

#TimeUsernameProblemLanguageResultExecution timeMemory
173587juggernautBigger segments (IZhO19_segments)C++14
0 / 100
3 ms1144 KiB
//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<100001;i++)logs[i]=logs[i>>1]+1; 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]}; //update(1,0,n,i,dp[i].sc+pref[i]); 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][j],dp[i].sc+pref[i]); j++; } } printf("%lld",dp[n].fr); }

Compilation message (stderr)

segments.cpp:13:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
 main(){
      ^
segments.cpp: In function 'int main()':
segments.cpp:15:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%lld",&n);
     ~~~~~^~~~~~~~~~~
segments.cpp:17:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%lld",&pref[i]);
         ~~~~~^~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...