#include<bits/stdc++.h>
#include "popa.h"
using namespace std;
int solve (int l, int r, int *Left, int *Right)
{
if (l > r) return -1;
if (l == r)
return l;
if (r == l + 1)
{
if (query (l, l, l, r))
{
Right[l] = r;
return l;
}
Left[r] = l;
return r;
}
int ras = (l + r) / 2;
if (query (l, ras, l, r))
{
for (int i=l; i<ras; i++)
if (query (l, i, l, r))
{
ras = i;
break;
}
}
else
{
for (int i=r; i>ras; i--)
if (query (ras, r, l, r))
{
ras = i;
break;
}
}
Left[ras] = solve (l, ras - 1, Left, Right);
Right[ras] = solve (ras + 1, r, Left, Right);
return ras;
}
int solve (int nn, int* Left, int* Right)
{
int N = nn;
for (int i=0; i<N; i++)
Left[i] = Right[i] = -1;
int root = solve (0, N - 1, Left, Right);
return root;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
5 ms |
392 KB |
not a valid solution |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
12 ms |
448 KB |
not a valid solution |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
13 ms |
448 KB |
too many queries |
2 |
Halted |
0 ms |
0 KB |
- |