QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#719175 | #8056. Travel 2 | FHQY# | WA | 0ms | 3664kb | C++20 | 925b | 2024-11-06 23:05:59 | 2024-11-06 23:05:59 |
Judging History
answer
#include<bits/stdc++.h>
#define int long long
#define ll long long
using namespace std;
const ll maxn=2505,maxm=1e4+5;
pair<ll,ll>gt(ll x){
ll res=0,siz=0;
cout<<"> "<<x<<endl;
cin>>res>>siz;
return make_pair(res,siz);
}
ll e[maxn][maxn];
vector<ll>lst[maxn];
ll cur[maxn];
void dfs(ll x,ll siz,ll fa){
if(e[x][fa]){
gt(e[x][fa]);
return ;
}
while(cur[x]<=siz){
pair<ll,ll>res=gt(cur[x]);
e[x][res.first]=cur[x];
lst[x].push_back(res.first);
cur[x]++;
dfs(res.first,res.second,x);
}
return ;
}
void solve()
{
for(ll i=1;i<=2500;i++){
cur[i]=1;
for(auto it:lst[i])e[i][it]=0;
lst[i].clear();
}
ll x=0,siz=0;
cin>>x>>siz;
dfs(x,siz,0);
cout<<"! ";
for(ll i=1;i<=2500;i++){
if(lst[i].empty())continue;
for(auto it:lst[i]){
if(i<it)cout<<i<<" "<<it<<" ";
}
}
return ;
}
signed main()
{
int T;
cin>>T;
while(T--)
solve();
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3664kb
input:
2 1 1 2 1 1 1 2 1 Correct 1 3
output:
> 1 > 1 > 1 ! 1 2 > 0 !
result:
wrong answer Integer parameter [name=i] equals to 0, violates the range [1, 3] (test case 2)