# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
423384 | benedict0724 | Crossing (JOI21_crossing) | C++17 | 333 ms | 12172 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 <iostream>
using namespace std;
int tree[800002], a[800002], b[800002], c[800002], lazy[800002];
int n, q;
string s1, s2, s3, t;
void propagate(int i, int l, int r)
{
if(lazy[i] == 0) return;
if(lazy[i] == 1 && b[i] == 0 && c[i] == 0) tree[i] = 1;
else if(lazy[i] == 2 && a[i] == 0 && c[i] == 0) tree[i] = 1;
else if(lazy[i] == 3 && a[i] == 0 && b[i] == 0) tree[i] = 1;
else tree[i] = 0;
if(l != r)
{
lazy[i*2] = lazy[i];
lazy[i*2+1] = lazy[i];
}
lazy[i] = 0;
}
void init(int i, int l, int r)
{
if(l == r)
{
if(s1[l] == 'J') a[i] = 1;
if(s1[l] == 'O') b[i] = 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |