#include <bits/stdc++.h>
#include "icc.h"
using namespace std;
#define pb push_back
#define deb(x) cout<<#x<<": "<<x<<endl;
int myQuery(vector<int> &v1, vector<int> &v2){
int a=v1.size();
int b=v2.size();
int A[v1.size()];
int B[v2.size()];
for(int i=0; i<a; ++i){
A[i]=v1[i];
}
for(int i=0; i<b; ++i){
B[i]=v2[i];
}
int bo=query(a,b,A,B);
return bo;
}
void run(int N) {
vector<vector<bool>> adj (N+1, vector<bool> (N+1, false));
for(int a=0; a<N-1; ++a){
vector<bool> v (N+1, false);
for(int i=1; i<=N; ++i){
vector<int> v1;
vector<int> v2;
v1.pb(i);
for(int x=1; x<=N; ++x){
if(x==i) continue;
if(!adj[i][x]){
v2.pb(x);
}
}
int bo=myQuery(v1, v2);
if(bo==1){
v[i]=true;
}
}
int x=-1;
int y=-1;
for(int i=1; i<=N; ++i){
if(v[i]){
if(x==-1){
x=i;
}
else{
y=i;
}
}
}
adj[x][y]=1;
adj[y][x]=1;
setRoad(x,y);
}
return;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
8 ms |
600 KB |
Ok! 210 queries used. |
2 |
Incorrect |
4 ms |
604 KB |
Wrong road! |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
10 ms |
604 KB |
Wrong road! |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
211 ms |
604 KB |
Wrong road! |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
33 ms |
856 KB |
Wrong road! |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
29 ms |
860 KB |
Wrong road! |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
153 ms |
604 KB |
Number of queries more than 3250 out of 1625 |
2 |
Halted |
0 ms |
0 KB |
- |