# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
424413 | APROHACK | Holiday (IOI14_holiday) | C++14 | 18 ms | 1988 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"holiday.h"
#include <bits/stdc++.h>
#define PB push_back
#define F first
#define S second
using namespace std;
int att[100000];
struct segTree{
long long dd, ht, mid, val1, val2;
segTree *L, *R;
segTree(int l, int r){
dd=l;
ht=r;
mid=(dd+ht)/2;
if(dd!=ht){
L=new segTree(l, mid);
R=new segTree(mid+1, r);
}
val1=0;
val2=0;
}
void encender(int ps, bool enc){
if(dd==ht){
if(enc){
val1++;
val2+=att[ps];
}else{
val1=0;
val2=0;
}
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... |