Submission #1085673

# Submission time Handle Problem Language Result Execution time Memory
1085673 2024-09-08T14:48:46 Z vjudge1 Carnival (CEOI14_carnival) C++17
0 / 100
12 ms 344 KB
#include <bits/stdc++.h>
using namespace std;
vector<int>v(151);
int vfind(int a)
{
    if(v[a]==a)
    {
        return a;
    }
    return v[a]=vfind(v[a]);
}
int main()
{
    int n;
    cin>>n;
    for(int i=1;i<=n;i++)
    {
        v[i]=i;
    }
    for(int i=1;i<=n;i++)
    {
        for(int j=i+1;j<=n;j++)
        {
            cout<<"2 "<<v[i]<<" "<<v[j]<<endl;
            int a;
            cin>>a;
            if(a==1)
            {
                vfind(i);
                vfind(j);
                v[v[j]]=v[i];
                break;
            }
        }
    }
    cout<<"0 ";
    for(int i=1;i<=n;i++)
    {
        vfind(i);
        cout<<v[i]<<" ";
    }
    cout<<endl;
    return 0;
}
# Verdict Execution time Memory Grader output
1 Incorrect 4 ms 344 KB Integer 19 violates the range [1, 11]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 4 ms 344 KB Integer 6 violates the range [1, 5]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 344 KB Output is correct
2 Incorrect 5 ms 344 KB Integer 11 violates the range [1, 8]
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 3 ms 340 KB Integer 5 violates the range [1, 4]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 344 KB Output is correct
2 Incorrect 12 ms 344 KB Integer 20 violates the range [1, 17]
3 Halted 0 ms 0 KB -