# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1279888 | mactoddlover | Sum Zero (RMI20_sumzero) | C++17 | 478 ms | 21340 KiB |
#include<bits/stdc++.h>
#define MASK(i) (1 << (i))
#define pub push_back
#define all(v) v.begin(), v.end()
#define compact(v) v.erase(unique(all(v)), end(v))
#define pii pair<int,int>
#define fi first
#define se second
#define endl "\n"
#define sz(v) (int)(v).size()
#define dbg(x) "[" #x " = " << (x) << "]"
#define vi vector<int>
using namespace std;
bool START_ALLOC;
template<class T> bool minimize(T& a, T b){if(a > b) return a = b, true;return false;}
template<class T> bool maximize(T& a, T b){if(a < b) return a = b, true;return false;}
typedef long long ll;
typedef long double ld;
mt19937_64 rng(chrono::high_resolution_clock::now().time_since_epoch().count());
ll rand(ll l, ll r){return uniform_int_distribution<ll>(l, r)(rng);}
const int MAX = 4e5 + 15;
int n, q;
ll pref[MAX];
int lst[MAX];
int log8[8];
int perm[MAX];
namespace subtask3{
int mp[MAX];
int nearest[MAX];
int spt[MAX][7];
void main(){
sort(perm, perm + 1 + n, [&](int i, int j){
return pii(pref[i], i) < pii(pref[j], j);
});
for(int i = 1; i <= n; i++){
if(pref[perm[i]] == pref[perm[i-1]]) lst[perm[i]] = perm[i-1] + 1;
}
for(int i = 1, maL = 0; i <= n; i++){
if(lst[i]){
if(maL >= lst[i]) lst[i] = 0;
else maximize(maL, lst[i]);
}
nearest[i] = maL;
}
for(int i = 1; i <= n; i++) if(lst[i]){
spt[lst[i]][0] = nearest[lst[i]-1];
}
log8[0] = 1;
for(int i = 1; i < 8; i++) log8[i] = log8[i-1]*8;
for(int j = 1; j <= 6; j++){
for(int i = 1; i <= n; i++){
int jump = spt[i][j-1];
for(int k = 0; k < 7; k++) jump = spt[jump][j-1];
spt[i][j] = jump;
}
}
cin >> q;
while(q--){
int l, r; cin >> l >> r;
int jump = nearest[r];
int answer = (nearest[r] >= l);
while(jump >= l){
int pjump = jump;
for(int j = 6; j >= 0; j--){
if(spt[jump][j] >= l){
answer += log8[j];
jump = spt[jump][j];
}
}
if(jump == pjump) break;
}
cout << answer << endl;
}
}
}
void solve(){
cin >> n;
for(int i = 1; i <= n; i++){
cin >> pref[i];
perm[i] = i;
pref[i] += pref[i-1];
}
subtask3::main();
}
bool END_ALLOC;
signed main(){
ios_base::sync_with_stdio(NULL);
cin.tie(0); cout.tie(0);
#define task "task"
cerr << "[Static Memory : " << fixed << setprecision(2) << (((&END_ALLOC) - (&START_ALLOC)) / (1024.0 * 1024.0)) << "mb]\n";
if(fopen(task".INP", "r")){
freopen(task".INP", "r", stdin);
freopen(task".OUT", "w", stdout);
}
int t; t = 1; //cin >> t;
while(t--) solve();
}
Compilation message (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... |