結果
問題 | No.282 おもりと天秤(2) |
ユーザー | koyumeishi |
提出日時 | 2015-09-19 00:54:25 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,053 bytes |
コンパイル時間 | 1,175 ms |
コンパイル使用メモリ | 94,588 KB |
実行使用メモリ | 25,904 KB |
平均クエリ数 | 505.75 |
最終ジャッジ日時 | 2024-07-16 06:10:55 |
合計ジャッジ時間 | 6,463 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 23 ms
24,580 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 | 22 ms
24,568 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
25,580 KB |
ソースコード
#include <iostream> #include <vector> #include <cstdio> #include <sstream> #include <map> #include <string> #include <algorithm> #include <queue> #include <cmath> #include <cassert> #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<vector<int>> G(n); vector<vector<int>> rG(n); vector<vector<int>> E(n, vector<int>(n, -1)); for(int i=0; i<n; i++){ for(int j=0; j<n; j++){ E[i][j] = (i+j)%n; } } vector<vector<pair<int,int>>> E_(n); for(int i=0; i<n; i++){ for(int j=0; j<n; j++){ E_[i].push_back( {E[i][j], j} ); } sort(E_[i].begin(), E_[i].end()); } for(int k=0; k<n; k++){ string out = "?"; vector<bool> used(n, false); vector<int> v; for(int i=0; i<n; i++){ if(used[i]) continue; if(E_[i][k].second == i) continue; v.push_back(i); v.push_back(E_[i][k].second); used[i] = true; used[E_[i][k].second] = true; } v.resize(2*n, -1); for(int x:v){ out += " "; out += '0' + x + 1; } cout << out << endl; for(int i=0; i<n; i++){ string in; cin >> in; if(in == "=") continue; if(v[2*i] == -1 || v[2*i+1] == -1) continue; if(in == "<"){ G[v[2*i]].push_back(v[2*i+1]); rG[v[2*i+1]].push_back(v[2*i]); } if(in == ">"){ G[v[2*i+1]].push_back(v[2*i]); rG[v[2*i]].push_back(v[2*i+1]); } } } vector<int> res; vector<bool> visit(n, false); int start = -1; for(int i=0; i<n; i++){ if(rG[i].size() == 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; }