# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
145037 |
2019-08-18T13:17:49 Z |
MKopchev |
popa (BOI18_popa) |
C++14 |
|
42 ms |
504 KB |
#include<bits/stdc++.h>
#include<popa.h>
using namespace std;
stack<int> open,idle;
int ask(int a,int b,int c,int d)
{
assert(a<=b);
assert(c<=d);
return query(a,b,c,d);
}
int solve(int N, int* Left, int* Right)
{
for(int i=0;i<N;i++)
{
int prev=-1;
while(open.size()&&ask(open.top(),i,i,i))
{
prev=open.top();
open.pop();
}
Left[i]=prev;
open.push(i);
}
open=idle;
for(int i=N-1;i>=0;i--)
{
int prev=-1;
while(open.size()&&ask(i,open.top(),i,i))
{
prev=open.top();
open.pop();
}
Right[i]=prev;
open.push(i);
}
set<int> seen={};
for(int i=0;i<N;i++)
{
seen.insert(Left[i]);
seen.insert(Right[i]);
}
for(int i=0;i<N;i++)
if(seen.count(i)==0)return i;
assert(0==1);
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
7 ms |
504 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
42 ms |
372 KB |
not a valid binary tre |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
12 ms |
248 KB |
too many querie |
2 |
Halted |
0 ms |
0 KB |
- |