QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#719238 | #8056. Travel 2 | FHQY | WA | 1ms | 3596kb | C++20 | 1.2kb | 2024-11-06 23:33:48 | 2024-11-06 23:33:49 |
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;
ll tot;
pair<ll,ll>gt(ll x){
ll res=0,siz=0;
cout<<"> "<<x<<endl;
cin>>res>>siz;
return make_pair(res,siz);
tot++;
}
ll e[maxn][maxn];
vector<ll>lst[maxn];
ll cur[maxn];
void dfs(ll x,ll siz,ll fa){
if(e[x][fa]){
// cout<<"from "<<x<<" back "<<fa<<endl;
gt(e[x][fa]);
return ;
}
// cout<<"now "<<x<<" "<<cur[x]<<endl;
while(cur[x]<=siz){
pair<ll,ll>res=gt(cur[x]);
// cout<<"now "<<x<<" "<<res.first<<endl;
e[x][res.first]=cur[x];
lst[x].push_back(res.first);
cur[x]++;
dfs(res.first,res.second,x);
}
if(e[x][fa])gt(e[x][fa]);
return ;
}
void solve()
{
tot=0;
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<<" ";
}
}
// cout<<endl;
// for(ll i=1;i<=4;i++)cout<<cur[i]<<endl;
// cout<<tot<<endl;
cout<<endl;
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: 1ms
memory: 3596kb
input:
2 1 1 2 1 1 1 2 1 1 1 Correct 1 3
output:
> 1 > 1 > 1 > 1 ! 1 2 > 0 !
result:
wrong answer Integer parameter [name=i] equals to 0, violates the range [1, 3] (test case 2)