# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
735293 | MODDI | Election (BOI18_election) | C++14 | 1595 ms | 27872 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 pb push_back
#define mp make_pair
typedef long long ll;
typedef pair<long long, long long> pll;
typedef pair<int,int> pii;
typedef vector<long long> vl;
typedef vector<int> vi;
int n;
string str;
struct state{
int ans;
int tot;
int pref;
int suf;
};
state neutral;
state tree[4 * 500100];
state merge(state a, state b){
if(a.tot==-(1e9))return b;if(b.tot==-(1e9))return a;
state c;
c.tot=a.tot+b.tot;
c.pref=std::max(a.tot+b.pref,a.pref);
c.suf=std::max(b.tot+a.suf,b.suf);
c.ans=std::max(std::max(a.ans+b.tot,a.tot+b.ans),a.pref+b.suf);
return c;
}
void update(int node, int l, int r, state put, int pos){
if(l == r && l == pos){
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... |