# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
484518 | hoanghq2004 | Election (BOI18_election) | C++14 | 382 ms | 28116 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>
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
using namespace std;
int n, q;
string s;
struct node {
int L, R;
int sum;
int best;
node operator + (const node& other) const {
node ret;
ret.sum = sum + other.sum;
ret.L = max(L, sum + other.L);
ret.R = max(other.R, other.sum + R);
ret.best = max({L + other.R, best + other.sum, sum + other.best});
return ret;
}
} st[2000010];
void build(int id, int L, int R) {
if (L == R) {
if (s[L - 1] == 'T') st[id] = {1, 1, 1, 1};
else st[id] = {0, 0, -1, 0};
return;
}
int mid = L + R >> 1;
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... |