QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#707781#8056. Travel 2Wolam#RE 1ms3632kbC++171.4kb2024-11-03 17:30:412024-11-03 17:30:44

Judging History

你现在查看的是最新测评结果

  • [2024-11-03 17:30:44]
  • 评测
  • 测评结果:RE
  • 用时:1ms
  • 内存:3632kb
  • [2024-11-03 17:30:41]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
const int maxn = 3e3 + 10;
int id[maxn][maxn],d[maxn],mx,cnt[maxn];
vector<pair<int,int>> edge;
void init(void)
{
    for(int i=1;i<=mx;i++)
    {
        cnt[i]=0;
        d[i]=0;
        for(int j=1;j<=mx;j++)
        {
            id[i][j]=0;
        }
    }
    mx=0;
    edge.clear();
}
int walk(int i)
{
    cout<<"> "<<i<<endl;
    int v;
    cin>>v;
    mx=max(mx,v);
    cin>>d[v];
    return v;
}
void dfs(int u,int pa)
{
    for(int i=cnt[u]+1;i<=d[u];i=cnt[u]+1)
    {
        cnt[u]++;
        int v=walk(i);
        id[u][v]=i;
        if(v==pa)
        {
            walk(id[pa][u]);
        }
        else
        {
            edge.emplace_back(u,v);
            dfs(v,u);
            walk(id[v][u]);
        }
    }
}
void solve(void)
{
    init();
    int root;
    cin>>root;
    cin>>d[root];
    dfs(root,-1);
    cout<<"! ";
    for(int i=0;i<(int)edge.size();i++)
    {
        cout<<edge[i].first<<" "<<edge[i].second;
        if(i==(int)edge.size()-1)
        {
            cout<<endl;
        }
        else
        {
            cout<<" ";
        }
    }
    string s;
    cin>>s;
    assert(s=="Correct");
}
int main(void)
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    int t;
    cin>>t;
    while(t--)
    {
        solve();
    }
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 3632kb

input:

2
1 1
2 1
1 1
2 1
1 1
Correct
1 3
2 2
1 3
2 2
4 2
1 3
3 1
1 3
3 1
1 3
4 2
1 3
4 2
2 2
4 2
2 2
1 3
Correct

output:

> 1
> 1
> 1
> 1
! 1 2
> 1
> 1
> 1
> 2
> 1
> 2
> 1
> 2
> 1
> 3
> 1
> 3
> 2
> 2
> 2
> 1
! 1 2 2 4 4 1 1 3

result:

ok correct! (2 test cases)

Test #2:

score: -100
Runtime Error

input:

1000
1 9
2 7
1 9
2 7
3 9
1 9
3 9
1 9
4 9
1 9
4 9
3 9
4 9
3 9
9 8
1 9
5 8
1 9
5 8
8 8
1 9
6 9
1 9
6 9
2 7
10 6
1 9
7 7
1 9
7 7
4 9
7 7
4 9
10 6
2 7
6 9
10 6
8 8
5 8
9 8
3 9
2 7
5 8
2 7
5 8
3 9
5 8
3 9
10 6
4 9
8 8
10 6
6 9
5 8
6 9
5 8
7 7
8 8
9 8
5 8
4 9
5 8
4 9
2 7
9 8
2 7
9 8
8 8
7 7
5 8
7 7
3 9
8 ...

output:

> 1
> 1
> 1
> 2
> 1
> 2
> 1
> 3
> 1
> 3
> 2
> 2
> 2
> 3
> 1
> 4
> 1
> 4
> 2
> 1
> 5
> 1
> 5
> 2
> 3
> 1
> 6
> 1
> 6
> 2
> 3
> 2
> 4
> 2
> 4
> 3
> 3
> 2
> 3
> 2
> 4
> 5
> 4
> 5
> 5
> 5
> 5
> 6
> 4
> 5
> 3
> 5
> 4
> 6
> 4
> 7
> 3
> 4
> 3
> 8
> 6
> 8
> 7
> 6
> 4
> 6
> 5
> 5
> 4
> 7
> 5
> 7
> 6
> 7
> 7
...

result: