Submission #979004

#TimeUsernameProblemLanguageResultExecution timeMemory
979004NintsiChkhaidzeSum Zero (RMI20_sumzero)C++17
61 / 100
641 ms25380 KiB
#include <bits/stdc++.h> #define ll long long #define s second #define f first #define pb push_back #define pii pair <int,int> #pragma GCC target("avx2,popcnt") #pragma GCC optimize("O3,unroll-loops") using namespace std; const int N = 4e5 + 3; int l[N],r[N],p[N],to[N],cur[N]; unordered_map <int,int> last; int main(){ ios_base::sync_with_stdio(0),cin.tie(NULL),cout.tie(NULL); int n,i,j,k; cin>>n; for(i=1;i<=n;i++){ cin>>p[i]; } for (i = n; i >= 1; i--){ p[i] += p[i + 1]; } for (i = 1; i <= n+1; i++) last[p[i]] = 1e9; last[0] = n + 1; to[n+1] = 1e9; for (i = n; i >= 1; i--){ to[i] = min(to[i + 1],last[p[i]]); last[p[i]] = i; } int q; cin>>q; for (i = 1; i <= q; i++){ cin >> l[i] >> r[i]; p[i] = 0; } for (i = 18; i >= 0; i--){ for (j = 1; j <= n+1; j++) cur[j] = to[j]; for (j = 1; j <= i; j++) for (k = 1; k <= n; k++) if (cur[k] <= n+1) cur[k] = cur[cur[k]]; for (j = 1; j <= q; j++){ if (cur[l[j]] <= r[j] + 1){ l[j] = cur[l[j]]; p[j] += (1<<i); } } } for (i=1;i<=q;i++) cout<<p[i]<<endl; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...