#include <bits/stdc++.h>
using namespace std;
vector<int>v(151);
int main()
{
int n,cnt=1;
cin>>n;
for(int i=1;i<=n;i++)
{
if(v[i]==0)continue;
v[i]=cnt++;
for(int j=i+1;j<=n;j++)
{
cout<<"2 "<<i<<" "<<j<<endl;
int a;
cin>>a;
if(a==1)
{
v[j]=v[i];
}
}
}
cout<<"0 ";
for(int i=1;i<=n;i++)
{
cout<<v[i]<<" ";
}
cout<<endl;
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
Integer 0 violates the range [1, 11] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Integer 0 violates the range [1, 5] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Integer 0 violates the range [1, 1] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Integer 0 violates the range [1, 4] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Integer 0 violates the range [1, 2] |
2 |
Halted |
0 ms |
0 KB |
- |