/*
Author : DeMen100ns (a.k.a Vo Khac Trieu)
School : VNU-HCM High school for the Gifted
fuck you adhoc
*/
#include <monster.h>
#include <bits/stdc++.h>
using namespace std;
namespace {
};
int check(int id, int n){
int ct = 0;
for(int i = 0; i < n; ++i){
if (id == i) continue;
ct += Query(id, i);
}
return ct;
}
std::vector<int> Solve(int n)
{
std::vector<int> v;
v.push_back(0);
for(int i = 1; i < n; ++i){
int l = -1, r = v.size();
if (l + 1 < r){
int mid = (l + r) >> 1;
if (Query(i, v[mid])){
l = mid;
} else r = mid;
}
v.insert(v.begin() + l, i);
}
int ct = 0;
for(int i = 0; i < n; ++i){
if (check(i, n) == n - 2){
swap(v[ct], v[i]);
++ct;
}
if (ct == 2) break;
}
if (!Query(v[0], v[1])) swap(v[0], v[1]);
for(int i = 1; i < n - 1; ++i){
for(int j = i + 1; j < n; ++j){
if (Query(i, j)){
swap(v[i + 1], v[j]);
break;
}
}
}
return v;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
208 KB |
Wrong Answer [3] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
208 KB |
Wrong Answer [3] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
336 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |