結果
問題 | No.1647 Travel in Mitaru city 2 |
ユーザー | milanis48663220 |
提出日時 | 2021-08-13 22:22:27 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,358 bytes |
コンパイル時間 | 1,438 ms |
コンパイル使用メモリ | 131,204 KB |
実行使用メモリ | 32,648 KB |
最終ジャッジ日時 | 2024-10-03 19:55:13 |
合計ジャッジ時間 | 22,613 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 4 ms
8,220 KB |
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 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | AC | 4 ms
8,520 KB |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | AC | 247 ms
26,184 KB |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <vector> #include <queue> #include <set> #include <map> #include <tuple> #include <cmath> #include <numeric> #include <functional> #include <cassert> #define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl; #define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } using namespace std; typedef long long ll; vector<int> g[200000]; bool used[200000]; int pre[200000]; vector<int> ans; void make_loop(int v, int end){ while(v != end){ ans.push_back(v); v = pre[v]; } ans.push_back(end); } bool dfs(int v){ used[v] = true; for(int to: g[v]){ if(!used[to]){ pre[to] = v; if(dfs(to)) return true; }else if(pre[v] != to){ make_loop(v, to); return true; } } return false; } using P = pair<int, int>; int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; int h, w; cin >> h >> w; int n; cin >> n; map<P, int> idx; vector<int> x(n), y(n); for(int i = 0; i < n; i++){ cin >> x[i] >> y[i]; x[i]--; y[i]--; g[x[i]].push_back(h+y[i]); g[h+y[i]].push_back(x[i]); idx[P(x[i], h+y[i])] = i; idx[P(h+y[i], x[i])] = i; } for(int i = 0; i < h+w; i++){ if(!used[i]){ if(dfs(i)){ int m = ans.size(); cout << m << endl; vector<int> v(m); for(int j = 0; j < m; j++){ int k = (j+1)%m; v[j] = idx[P(ans[j], ans[k])]; } if(x[v[0]] == x[v[1]]){ for(int j = 0; j < m; j++) cout << v[j]+1 << ' '; cout << endl; }else{ for(int j = 0; j < m; j++) cout << v[(j+1)%m]+1 << ' '; cout << endl; } // for(int j: v) cout << x[j] << ' ' << y[j] << endl; return 0; } } } cout << -1 << endl; }