結果
問題 | No.2085 Directed Complete Graph |
ユーザー | makichan |
提出日時 | 2024-10-31 03:30:05 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,586 bytes |
コンパイル時間 | 5,446 ms |
コンパイル使用メモリ | 316,488 KB |
実行使用メモリ | 25,452 KB |
平均クエリ数 | 2472.00 |
最終ジャッジ日時 | 2024-10-31 03:30:16 |
合計ジャッジ時間 | 9,132 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
25,220 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 22 ms
24,836 KB |
testcase_16 | AC | 21 ms
24,820 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using mint = atcoder::static_modint<998244353>; //using mint = atcoder::static_modint<1000000007>; using namespace std; using namespace atcoder; using ld = long double; using ll = long long; #define mp(a,b) make_pair(a,b) #define rep(i,s,n) for(int i=s; i<n; i++) const vector<int> dx{1,0,-1,0},dy{0,1,0,-1}; deque<int> solve(deque<int>p){ int n=p.size(); if(n==1)return p; int h=n/2; deque<int> a,b; rep(i,0,h)a.push_back(p.front()),p.pop_front(); while(p.size()){ b.push_back(p.front()); p.pop_front(); } a=solve(a); b=solve(b); int t; // cout << "? " << a.back() << " " << b.front() << "\n"; // cin >> t; // if(t==1){ // for(auto x:b)a.push_back(x); // return a; // } // cout << "? " << b.back() << " " << a.front() << "\n"; // cin >> t; // if(t==1){ // for(auto x:a)b.push_back(x); // return b; // } p.clear(); while(a.size()*b.size()){ int u=a.front(),v=b.front(); cout << "? " << u << " " << v << "\n"; cin >> t; if(t==1){ a.pop_front(); p.push_back(u); } else{ b.pop_front(); p.push_back(v); } } while(a.size())p.push_back(a.front()),a.pop_front(); while(b.size())p.push_back(b.front()),b.pop_front(); return p; } int main(){ int n;cin >> n; deque<int> a(n); iota(a.begin(),a.end(),1); solve(a); cout << "!\n" << n-1 << "\n"; for(auto x:a)cout << x << " "; }