#include <bits/stdc++.h>
using namespace std;
#define PUB push_back
#define POB pop_back
int N, respon, cntSet, bykSet, parent[155];
bool isCheck[155][155];
vector<int>sameSet[155];
void init(){
memset(isCheck, 0, sizeof isCheck);
for(int i=1;i<155;i++){
parent[i] = i;
sameSet[i].PUB(i);
}
cntSet = N;
cout << N;
for(int i=1;i<=N;i++){
cout << " " << i;
}
cout << endl << flush;
cin >> bykSet;
}
void moveSet(int ke, int dari){
for(int elm:sameSet[dari]){
parent[elm] = ke;
sameSet[ke].PUB(elm);
}
sameSet[dari].clear();
}
void compressSet(){
for(int i=1;i<=bykSet;i++){
if(sameSet[i].empty()){
for(int j=i+1;j<=N;j++){
if(!sameSet[j].empty()){
for(int elm:sameSet[j]){
parent[elm] = i;
sameSet[i].PUB(elm);
}
sameSet[j].clear();
break;
}
}
}
}
}
int main(){
cin >> N;
init();
while(bykSet != cntSet){
for(int i=1;i<=N;i++){
if(sameSet[parent[i]].empty()) continue;
for(int j=i+1;j<=N;j++){
if(sameSet[parent[j]].empty()) continue;
if(isCheck[parent[i]][parent[j]]) continue;
isCheck[parent[i]][parent[j]] = 1;
cout << 2 << " " << sameSet[parent[i]].front() << " " << sameSet[parent[j]].front() << endl << flush;
cin >> respon;
if(respon == 1){
moveSet(parent[i], parent[j]);
cntSet--;
}
break;
}
}
}
compressSet();
cout << 0;
for(int i=1;i<=N;i++) cout << " " << parent[i];
cout << endl << flush;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1078 ms |
252 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1072 ms |
436 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3 ms |
516 KB |
Output is correct |
2 |
Execution timed out |
1072 ms |
516 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1082 ms |
644 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1062 ms |
644 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |