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 "icc.h"
#include <bits/stdc++.h>
using namespace std;
//int query(int a,int b,int* A,int *B);
//void setRoad(int a,int b);
int a[105];
int b[105];
int P[105];
bool hasEdge[105][105];
void run(int n) {
memset(hasEdge, false, sizeof(hasEdge));
for(int k = 1; k < n; k ++){
for(int i = 1; i <= n; i ++){
int cnt = 0;
/*for(int j = i+1; j <= n; j ++){
if(!hasEdge[j][i]){
b[cnt++] = j;
}
}*/
a[0] = i;
//printf("%d ", i);
//if(query(1, cnt, a, b)){
for(int j = i+1; j <= n; j ++){
b[0] = j;
//printf("%d %d %d\n", i, j, hasEdge[i][j]);
if(!hasEdge[j][i]){
if(query(1, 1, a, b)){
hasEdge[j][i] = true;
hasEdge[i][j] = true;
//printf("%d %d\n", i, j);
setRoad(i, j);
}
}
}
//break;
//}
//assert(i != n);
}
}
}
Compilation message (stderr)
icc.cpp: In function 'void run(int)':
icc.cpp:18:17: warning: unused variable 'cnt' [-Wunused-variable]
int cnt = 0;
^~~
# | 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... |