QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#799076 | #8056. Travel 2 | 123adad | WA | 1ms | 3680kb | C++23 | 879b | 2024-12-04 21:37:17 | 2024-12-04 21:37:18 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
using ll=long long;
const int N=2510;
int d[N],vis[N],road[N][N];
vector<int> e[N];
void dfs(int u){
if(e[u].size()<d[u]){
cout<<"> "<<e[u].size()+1<<endl;
int v;
cin>>v>>d[v];
e[u].push_back(v);
road[u][v]=e[u].size()+1;
dfs(v);
return;
}
vis[u]=1;
int i=0;
for(auto v:e[u]){
i++;
if(!vis[v]){
cout<<"> "<<i<<endl;
cin>>i;
cin>>d[i];
dfs(v);
int x=road[v][u];
cout<<"> "<<x<<endl;
cin>>x;
cin>>d[x];
}
}
}
void solve(){
for(int i=0;i<N;i++){
vis[i]=0;
e[i].clear();
}
int u;
cin>>u>>d[u];
dfs(u);
cout<<"! ";
for(int i=1;i<N;i++){
for(auto v:e[i]){
if(i<v){
cout<<i<<" "<<v<<" ";
}
}
}
cout<<endl;
}
int main(){
ios::sync_with_stdio(0),cin.tie(0);
int _=1;//cin>>_;
while(_--) solve();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 1ms
memory: 3680kb
input:
2 1 1 2 1 1 1
output:
> 1 > 1 !
result:
wrong answer format Unexpected end of file - int32 expected (test case 1)