結果

問題 No.1647 Travel in Mitaru city 2
ユーザー nawawannawawan
提出日時 2021-08-14 00:35:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,676 bytes
コンパイル時間 1,960 ms
コンパイル使用メモリ 215,420 KB
実行使用メモリ 39,036 KB
最終ジャッジ日時 2024-10-04 01:42:31
合計ジャッジ時間 13,094 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 WA -
testcase_08 AC 194 ms
35,524 KB
testcase_09 AC 177 ms
31,908 KB
testcase_10 AC 220 ms
35,656 KB
testcase_11 AC 142 ms
26,496 KB
testcase_12 AC 163 ms
25,212 KB
testcase_13 AC 152 ms
27,692 KB
testcase_14 AC 212 ms
36,656 KB
testcase_15 AC 207 ms
36,100 KB
testcase_16 AC 179 ms
34,324 KB
testcase_17 AC 150 ms
28,216 KB
testcase_18 AC 152 ms
26,752 KB
testcase_19 AC 175 ms
36,348 KB
testcase_20 AC 155 ms
32,828 KB
testcase_21 AC 174 ms
37,228 KB
testcase_22 AC 192 ms
37,208 KB
testcase_23 AC 198 ms
37,636 KB
testcase_24 AC 178 ms
33,324 KB
testcase_25 AC 181 ms
34,940 KB
testcase_26 AC 194 ms
37,560 KB
testcase_27 AC 205 ms
37,948 KB
testcase_28 AC 204 ms
39,000 KB
testcase_29 AC 211 ms
39,020 KB
testcase_30 AC 204 ms
36,192 KB
testcase_31 AC 209 ms
39,012 KB
testcase_32 AC 187 ms
38,692 KB
testcase_33 AC 184 ms
33,916 KB
testcase_34 AC 206 ms
39,036 KB
testcase_35 AC 191 ms
34,652 KB
testcase_36 AC 197 ms
38,976 KB
testcase_37 AC 204 ms
38,964 KB
testcase_38 AC 177 ms
30,996 KB
testcase_39 AC 159 ms
27,420 KB
testcase_40 AC 174 ms
30,560 KB
testcase_41 AC 173 ms
27,756 KB
testcase_42 AC 190 ms
30,960 KB
testcase_43 AC 2 ms
6,816 KB
testcase_44 AC 5 ms
9,436 KB
testcase_45 AC 127 ms
20,412 KB
testcase_46 AC 143 ms
20,472 KB
testcase_47 AC 139 ms
20,460 KB
testcase_48 AC 136 ms
20,500 KB
testcase_49 WA -
testcase_50 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
    int H, W, N;
    cin >> H >> W >> N;
    vector<int> x(N), y(N);
    vector<vector<int>> G(H + W);
    map<pair<int, int>, int> m;
    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]);
        m[{x[i], H + y[i]}] = i;
    }
    vector<int> used(H + W);
    vector<int> par(H + W, -1);
    bool f = false;
    auto dfs = [&](auto dfs, int now, int num, int p) -> void{
        used[now] = num;
        if(f) true;
        for(int to : G[now]){
            if(f) return;
            if(p == to) continue;
            if(used[to] == -1) continue;
            if(used[to] > 0 && num - used[to] >= 3){
                par[to] = now;
                f = true;
                int t = now;
                vector<int> ans;
                ans.push_back(m[{min(now, to), max(now, to)}]);
                while(par[t] != now){
                    ans.push_back(m[{min(t, par[t]), max(t, par[t])}]);
                    t = par[t];
                }
                reverse(ans.begin(), ans.end());
                cout << ans.size() << endl;
                for(int i = 0; i < (int)ans.size(); i++){
                    if(i == (int)ans.size() - 1) cout << ans[i] + 1 << endl;
                    else cout << ans[i] + 1 << ' ';
                }
                return;
            }
            par[to] = now;
            dfs(dfs, to, num + 1, now);
        }
        used[now] = -1;
    };
    for(int i = 0; i < H; i++){
        if(used[i] == 0) dfs(dfs, i, 1, -1);
    }
    if(!f) cout << -1 << endl;

}
0