# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1171910 | fryingduc | Sum Zero (RMI20_sumzero) | C++20 | 839 ms | 21544 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 = 8;
int n;
long long prf[maxn];
int ord[maxn];
int up[maxn][LG + 1];
void solve() {
cin >> n;
for (int i = 1; i <= n; ++i) {
int x; cin >> x;
prf[i] = prf[i - 1] + x;
ord[i] = i;
}
sort(ord, ord + n + 1, [](const int &x, const int &y) -> bool {
return (prf[x] != prf[y] ? prf[x] < prf[y] : x < y);
});
up[n + 1][0] = n + 2;
up[n + 2][0] = n + 2;
for (int i = 1; i <= n; ++i) up[i][0] = n + 2;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |