Submission #859692

#TimeUsernameProblemLanguageResultExecution timeMemory
859692HoriaHaivasSum Zero (RMI20_sumzero)C++14
0 / 100
10 ms19036 KiB
/* "care a facut teste cu Lattice reduction attack e ciudat" - 2023 - */ #include<bits/stdc++.h> #define debug(x) cerr << #x << " " << x << "\n" #define debugs(x) cerr << #x << " " << x << " " #pragma GCC optimize("Ofast") using namespace std; struct secv { int l; int r; int nodeval; }; bool cmp2 (secv a, secv b) { return a.l<b.l; } map<long long,int> last; secv perechi[400005]; int up[10][400005]; int firstseq[400005]; int pw[10]; int main() { ifstream fin("secvp.in"); ofstream fout("secvp.out"); ios_base::sync_with_stdio(false); cin.tie(); cout.tie(); int n,q,i,j,k,cnt,best,it,mi,a,b,r,pas,node,nxt; long long sp; cin >> n; sp=0; cnt=0; for (j=1; j<=n; j++) { cin >> firstseq[j]; sp=sp+firstseq[j]; if (sp==0) { cnt++; perechi[cnt].l=last[sp]+1; perechi[cnt].r=j; } else { if (last[sp]!=0) { cnt++; perechi[cnt].l=last[sp]+1; perechi[cnt].r=j; } } last[sp]=j; } sort(perechi+1,perechi+1+cnt,cmp2); for (j=1; j<=cnt; j++) perechi[j].nodeval=j; perechi[0].l=n+1; perechi[0].r=n+1; perechi[0].nodeval=0; it=cnt; best=0; for (j=n; j>=1; j--) { if (perechi[it].l==j) { if (perechi[it].r<perechi[best].r) { best=it; } it--; } firstseq[j]=best; /* debugs(j); debug(firstseq[j]); */ } for (j=1; j<=cnt; j++) { up[0][j]=firstseq[perechi[j].r+1]; } pw[0]=1; for (j=1; j<=9; j++) { pw[j]=pw[j-1]*4; } for (j=1; j<=9; j++) { for (i=1; i<=cnt; i++) { up[j][i]=up[j-1][up[j-1][up[j-1][up[j-1][i]]]]; } } cin >> q; for (j=1; j<=q; j++) { cin >> a >> b; r=0; pas=10; node=firstseq[a]; while (pas>=0) { nxt=up[pas][up[pas][up[pas][node]]]; if (perechi[nxt].nodeval!=0 && perechi[nxt].r<=b) { r+=pw[pas]*3; node=nxt; } else { nxt=up[pas][up[pas][node]]; if (perechi[nxt].nodeval!=0 && perechi[nxt].r<=b) { r+=pw[pas]*2; node=nxt; } else { nxt=up[pas][node]; if (perechi[nxt].nodeval!=0 && perechi[nxt].r<=b) { r+=pw[pas]; node=nxt; } } } pas--; } if (perechi[node].nodeval!=0 && perechi[node].r<=b) cout << r+1 << "\n"; else cout << 0 << "\n"; } return 0; }

Compilation message (stderr)

sumzero.cpp: In function 'int main()':
sumzero.cpp:37:17: warning: unused variable 'k' [-Wunused-variable]
   37 |     int n,q,i,j,k,cnt,best,it,mi,a,b,r,pas,node,nxt;
      |                 ^
sumzero.cpp:37:31: warning: unused variable 'mi' [-Wunused-variable]
   37 |     int n,q,i,j,k,cnt,best,it,mi,a,b,r,pas,node,nxt;
      |                               ^~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...