結果
問題 | No.1647 Travel in Mitaru city 2 |
ユーザー | kwm_t |
提出日時 | 2021-08-13 22:35:02 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,136 bytes |
コンパイル時間 | 4,229 ms |
コンパイル使用メモリ | 244,896 KB |
実行使用メモリ | 69,808 KB |
最終ジャッジ日時 | 2024-10-03 20:22:57 |
合計ジャッジ時間 | 29,590 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
8,160 KB |
testcase_01 | AC | 4 ms
8,236 KB |
testcase_02 | AC | 4 ms
8,152 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 425 ms
51,852 KB |
testcase_09 | AC | 404 ms
54,072 KB |
testcase_10 | AC | 432 ms
52,640 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 456 ms
53,776 KB |
testcase_15 | AC | 471 ms
53,124 KB |
testcase_16 | AC | 412 ms
49,876 KB |
testcase_17 | WA | - |
testcase_18 | AC | 477 ms
69,144 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 479 ms
54,400 KB |
testcase_23 | AC | 481 ms
54,608 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 471 ms
54,736 KB |
testcase_27 | AC | 480 ms
54,956 KB |
testcase_28 | AC | 485 ms
55,828 KB |
testcase_29 | AC | 485 ms
56,064 KB |
testcase_30 | WA | - |
testcase_31 | AC | 484 ms
55,944 KB |
testcase_32 | AC | 506 ms
66,432 KB |
testcase_33 | AC | 478 ms
65,032 KB |
testcase_34 | AC | 455 ms
55,812 KB |
testcase_35 | AC | 451 ms
62,852 KB |
testcase_36 | AC | 455 ms
55,944 KB |
testcase_37 | AC | 443 ms
56,068 KB |
testcase_38 | AC | 447 ms
50,428 KB |
testcase_39 | WA | - |
testcase_40 | AC | 468 ms
50,780 KB |
testcase_41 | WA | - |
testcase_42 | AC | 484 ms
50,576 KB |
testcase_43 | AC | 4 ms
8,248 KB |
testcase_44 | AC | 5 ms
8,140 KB |
testcase_45 | AC | 412 ms
48,148 KB |
testcase_46 | AC | 417 ms
47,944 KB |
testcase_47 | AC | 430 ms
48,272 KB |
testcase_48 | AC | 410 ms
48,248 KB |
testcase_49 | AC | 413 ms
48,444 KB |
testcase_50 | WA | - |
ソースコード
#include "bits/stdc++.h" #include "atcoder/all" using namespace std; using namespace atcoder; //using mint = modint1000000007; //const int mod = 1000000007; //using mint = modint998244353; //const int mod = 998244353; //const int INF = 1e9; //const long long LINF = 1e18; //const bool debug = false; #define rep(i, n) for (int i = 0; i < (n); ++i) #define rep2(i,l,r)for(int i=(l);i<(r);++i) #define rrep(i, n) for (int i = (n-1); i >= 0; --i) #define rrep2(i,l,r)for(int i=(r-1);i>=(l);--i) #define all(x) (x).begin(),(x).end() #define allR(x) (x).rbegin(),(x).rend() #define endl "\n" #define P pair<int,int> template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; } template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; } vector<int>to[200005]; bool use[200005]; bool b; vector<int>ans; void dfs(int v, int root, int p = -1) { use[v] = true; for (auto e : to[v]) { if (root == e) b = true; if (b)break; if (use[e])continue; ans.push_back(e); dfs(e, root, v); if (b)break; ans.pop_back(); } } int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int h, w, n; cin >> h >> w >> n; map<int, set<int>>mpx, mpy; vector<int>x(n), y(n); rep(i, n) { cin >> x[i] >> y[i]; x[i]--; y[i]--; mpx[x[i]].insert(i); mpy[y[i]].insert(i); } scc_graph ss(2 * n); rep(i, n) { for (auto idx : mpy[y[i]]) { if (i == idx) continue; to[i * 2].push_back(idx * 2 + 1); ss.add_edge(i * 2, idx * 2 + 1); } for (auto idx : mpx[x[i]]) { if (i == idx) continue; to[i * 2 + 1].push_back(idx * 2); ss.add_edge(i * 2 + 1, idx * 2); } } vector<vector<int>> scc = ss.scc(); rep(i, scc.size()) { if (1 == scc[i].size())continue; int fir = -1; rep(j, scc[i].size()) { if (0 == scc[i][j] % 2)fir = scc[i][j]; } rep(j, n * 2)use[j] = true; rep(j, scc[i].size())use[scc[i][j]] = false; ans.push_back(fir); dfs(fir, fir); cout << ans.size() << endl; rep(j, ans.size()) cout << ans[j] / 2 + 1 << " "; return 0; } cout << -1 << endl; return 0; }