# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
940362 | Sundavar | Crossing (JOI21_crossing) | C++14 | 4498 ms | 339616 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;
int conv(char c){
if(c == 'I') return 0;
if(c == 'J') return 1;
return 2;
}
struct segTree{
struct node{
vector<int> real_cnt;
node(){
real_cnt.resize(3);
}
int wrong = 0, set_to = -1, all = 0;
};
vector<node> t;
int maxN = (1<<18);
segTree(string& real, string& fake){
t.resize(2*maxN);
for(int i = 0; i < real.size(); i++){
t[i+maxN].real_cnt[conv(real[i])] = 1;
t[i+maxN].wrong = fake[i] != real[i];
t[i+maxN].all = 1;
}
build(1, 0, maxN);
}
void build(int v, int l, int r){
if(r-l == 1) return;
build(2*v, l, (l+r)/2), build(2*v+1, (l+r)/2, r);
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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |