結果
問題 | No.282 おもりと天秤(2) |
ユーザー | Mi_Sawa |
提出日時 | 2015-09-19 20:24:13 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,808 bytes |
コンパイル時間 | 1,810 ms |
コンパイル使用メモリ | 172,300 KB |
実行使用メモリ | 25,604 KB |
平均クエリ数 | 1.00 |
最終ジャッジ日時 | 2024-07-16 06:21:16 |
合計ジャッジ時間 | 6,699 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
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 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 31 ms
24,556 KB |
testcase_23 | AC | 21 ms
25,184 KB |
ソースコード
#include <bits/stdc++.h> #define REP(i,b,n) for(int i=(int)(b);i<(int)(n);++i) #define rep(i,n) REP(i,0,n) using namespace std; vector<int> query(const int &n, vector<int> ord){//{{{ if(rand() % 2) reverse(begin(ord), end(ord)); if(rand() % 2){ ord.pop_back(); reverse(begin(ord), end(ord)); } if(ord.size() % 2) ord.pop_back(); rep(i, ord.size()/2) if(ord[i*2] < ord[i*2+1]) swap(ord[i*2], ord[i*2+1]); return ord; cout << '?'; rep(i, ord.size()) cout << ' ' << ord[i]+1; rep(_, 2 * n - ord.size()) cout << ' ' << 0; cout << endl; cout.flush(); char ch; rep(i, ord.size()/2){ cin >> ch; if(ch == '>') swap(ord[i*2], ord[i*2+1]); } rep(_, n - ord.size()/2) cin >> ch; return ord; }//}}} bool solve(){ int n; cin >> n; vector<set<int>> g(n); rep(cnt, 2000){ vector<int> deg(n), q; rep(u, n) for(auto &v : g[u]) ++deg[v]; rep(u, n) if(!deg[u]) q.emplace_back(u); vector<int> ord; bool ok = true; while(!q.empty()){ ok &= q.size() == 1; int idx = rand() % q.size(); swap(q[idx], q.back()); int u = q.back(); q.pop_back(); ord.emplace_back(u); for(auto &v : g[u]) if(!--deg[v]) q.emplace_back(v); } if(ok){ cerr << cnt << endl; cout << '!'; rep(i, n) cout << ' ' << ord[i]+1; cout << endl; break; } auto res = query(n, ord); rep(i, res.size()/2) g[res[i*2]].emplace(res[i*2+1]); } return true; } signed main(){ cin.tie(nullptr); ios_base::sync_with_stdio(false); cout << std::fixed << std::setprecision(10); solve(); return 0; } // vim:set foldmethod=marker commentstring=//%s: