結果
問題 | No.282 おもりと天秤(2) |
ユーザー | koyumeishi |
提出日時 | 2015-09-18 23:58:41 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,963 bytes |
コンパイル時間 | 1,241 ms |
コンパイル使用メモリ | 93,208 KB |
実行使用メモリ | 32,072 KB |
平均クエリ数 | 722.62 |
最終ジャッジ日時 | 2024-07-16 06:00:52 |
合計ジャッジ時間 | 7,190 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 21 ms
24,964 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 | AC | 21 ms
25,220 KB |
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 | WA | - |
testcase_23 | AC | 21 ms
24,556 KB |
ソースコード
#include <iostream> #include <vector> #include <cstdio> #include <sstream> #include <map> #include <string> #include <algorithm> #include <queue> #include <cmath> #include <set> using namespace std; //dfs //O(V+E) void TopologicalSort(vector<vector<int> > &G, vector<int> &res, int node, vector<bool> &visit){ if(visit[node] == true) return; visit[node] = true; for(auto itr = G[node].rbegin(); itr != G[node].rend(); itr++){ TopologicalSort(G, res, *itr, visit); } /* for(int i=0; i<G[node].size(); i++){ TopologicalSort(G, res, G[node][i], visit); } */ res.push_back(node); } int main(){ int n; cin >> n; vector<set<int>> E(n); for(int i=0; i<n; i++){ for(int j=0; j<n; j++){ if(i==j) continue; E[i].insert(j); } } vector<vector<int>> G(n); vector<int> in_edge(n, 0); for(;;){ string out = "?"; vector<int> v; vector<bool> used(2*n, false); bool update = false; for(int j=0; j<n; j++){ if(used[j]) continue; if(E[j].size() == 0) continue; int x = j; int y = *E[j].begin(); if(used[y]) continue; used[x] = true; used[y] = true; E[x].erase(y); E[y].erase(x); v.push_back(x); v.push_back(y); update = true; } if(update == false) break; v.resize(2*n, -1); for(int j:v){ out += " "; out += j+1 + '0'; } cout << out << endl; for(int j=0; j<n; j++){ string in; cin >> in; if(v[2*j] == -1 || v[2*j+1] == -1) continue; if(in == "=") continue; if(in == "<"){ G[v[2*j]].push_back(v[2*j+1]); in_edge[v[2*j+1]]++; } if(in == ">"){ G[v[2*j+1]].push_back(v[2*j]); in_edge[v[2*j]]++; } } } vector<int> res; vector<bool> visit(n, false); int start = -1; for(int i=0; i<n; i++){ if(in_edge[i] == 0){ start = i; break; } } TopologicalSort(G, res, start, visit); reverse(res.begin(), res.end()); string out = "!"; for(int i : res){ out += " "; out += i+1 + '0'; } cout << out << endl; return 0; }