# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
991367 | PCTprobability | 자리 배치 (IOI18_seats) | C++17 | 3427 ms | 203536 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 "seats.h"
#include <bits/stdc++.h>
using namespace std;
struct nd{
int mx,mn;
nd(){
mx=0;
mn=10000;
}
nd(int a,int b){
mx=a,mn=b;
}
};
nd merge(nd a,nd b){
return nd(max(a.mx,b.mx),min(a.mn,b.mn));
}
struct segtree{
vector<nd> node;
int n;
segtree(){
}
segtree(int n_,vector<int> a){
n=1;
while(n<n_) n*=2;
node.resize(2*n);
for(int i=0;i<2*n;i++) node[i]=nd();
for(int i=0;i<n_;i++) node[i+n]=nd(a[i],a[i]);
for(int i=n-1;i>=0;i--) node[i]=merge(node[2*i],node[2*i+1]);
}
void set(int x,int v){
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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |