# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
891556 | fanwen | Sum Zero (RMI20_sumzero) | C++17 | 6 ms | 31320 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#define fi first
#define se second
#define ll long long
#define file(name) \
if(fopen(name".inp", "r")) \
freopen(name".inp", "r", stdin), freopen(name".out", "w", stdout);
const int MAX = 4e5 + 5;
int n, a[MAX], q, f[19][MAX];
void you_make_it(void) {
long long pref = 0;
map <long long, int> dd;
cin >> n;
memset(f, -1, sizeof f);
dd[0] = 0;
for (int i = 1; i <= n; ++i) {
cin >> a[i];
pref += a[i];
if(dd.count(pref)) f[0][i] = dd[pref];
f[0][i] = max(f[0][i - 1], f[0][i]);
dd[pref] = i;
// cout << f[0][i] << " \n"[i == n];
}
for (int i = 1; i < 19; ++i) {
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... |