# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1171906 | fryingduc | Sum Zero (RMI20_sumzero) | C++20 | 285 ms | 48672 KiB |
#include "bits/stdc++.h"
using namespace std;
#ifdef duc_debug
#include "bits/debug.h"
#else
#define debug(...)
#endif
const int maxn = 4e5 + 5;
const int LG = 19;
int n, a[maxn];
long long prf[maxn];
int nxt[maxn];
map<long long, int> mp;
int up[maxn][LG + 1];
void solve() {
cin >> n;
for (int i = 1; i <= n; ++i) {
cin >> a[i];
prf[i] = prf[i - 1] + a[i];
}
up[n + 1][0] = n + 2;
up[n + 2][0] = n + 2;
for (int i = n; i; --i) {
mp[prf[i]] = i;
if (mp.count(prf[i - 1])) {
up[i][0] = mp[prf[i - 1]] + 1;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |