제출 #956531

#제출 시각아이디문제언어결과실행 시간메모리
956531Batorgil952Sum Zero (RMI20_sumzero)C++14
22 / 100
77 ms23956 KiB
#include<bits/stdc++.h> #define ll long long #define pb push_back #define mp make_pair using namespace std; const ll N=4e5+5; ll a[N]; ll dp[N][21]; map< ll, ll > M; int main(){ ll n, i, j, q, l, r, s, ans; scanf("%lld",&n); for(i=1; i<=n; i++){ scanf("%lld",&a[i]); } s=0; M[0]=0; for(i=1; i<=n; i++){ s+=a[i]; if(M[s]!=0){ dp[i][1]=M[s]+1; } else{ if(s==0) dp[i][1]=1; else dp[i][1]=-1; } if(dp[i][1]==-1 && i>1){ dp[i][1]=dp[i-1][1]; } else if(i>1) dp[i][1]=max(dp[i][1], dp[i-1][1]); M[s]=i; } for(i=1; i<=n; i++){ // cout<<dp[i][1]<<" "; for(j=2; j<=20; j++){ if((dp[i][j-1]-1)>0) dp[i][j]=dp[dp[i][j-1]-1][j-1]; else dp[i][j]=-1; // cout<<dp[i][j]<<" "; } // cout<<endl; } scanf("%lld",&q); while(q--){ scanf("%lld",&l); scanf("%lld",&r); ans=0; for(i=20; i>=1; i--){ if(r>=0){ if(dp[r][i]>=l){ ans+=(1<<(i-1)); r=dp[r][i]; r--; } } } printf("%lld\n", ans); } return 0; }

컴파일 시 표준 에러 (stderr) 메시지

sumzero.cpp: In function 'int main()':
sumzero.cpp:16:7: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   16 |  scanf("%lld",&n);
      |  ~~~~~^~~~~~~~~~~
sumzero.cpp:19:8: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   19 |   scanf("%lld",&a[i]);
      |   ~~~~~^~~~~~~~~~~~~~
sumzero.cpp:50:7: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   50 |  scanf("%lld",&q);
      |  ~~~~~^~~~~~~~~~~
sumzero.cpp:53:8: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   53 |   scanf("%lld",&l);
      |   ~~~~~^~~~~~~~~~~
sumzero.cpp:54:8: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   54 |   scanf("%lld",&r);
      |   ~~~~~^~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...