QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#707843#8056. Travel 2Wolam#WA 1ms3932kbC++171.5kb2024-11-03 17:48:412024-11-03 17:48:42

Judging History

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

  • [2024-11-03 17:48:42]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3932kb
  • [2024-11-03 17:48:41]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
const int maxn = 3e3 + 10;
// int tot=0;
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)
{
    for(int i=cnt[u]+1;i<=d[u];i=cnt[u]+1)
    {
        cnt[u]++;
        int v=walk(i);
        id[u][v]=i;
        if(u<v)
            edge.emplace_back(u,v);
        else
            edge.emplace_back(v,u);
        dfs(v);
        walk(id[v][u]);
    }
}
void solve(void)
{
    init();
    int root;
    cin>>root;
    cin>>d[root];
    dfs(root);
    sort(edge.begin(),edge.end());
    edge.erase(unique(edge.begin(),edge.end()),edge.end());
    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;
    if(s=="Wrong")
    {
        assert(false);
    }
    //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: 3596kb

input:

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

output:

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

result:

ok correct! (2 test cases)

Test #2:

score: -100
Wrong Answer
time: 1ms
memory: 3932kb

input:

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

output:

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

result:

wrong answer you used more than 100 queries. (test case 1)