結果

問題 No.1647 Travel in Mitaru city 2
ユーザー kimiyukikimiyuki
提出日時 2021-08-21 08:18:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,411 bytes
コンパイル時間 2,350 ms
コンパイル使用メモリ 209,744 KB
実行使用メモリ 21,768 KB
最終ジャッジ日時 2024-10-14 17:08:45
合計ジャッジ時間 10,018 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 84 ms
19,740 KB
testcase_09 AC 77 ms
17,928 KB
testcase_10 AC 80 ms
19,904 KB
testcase_11 AC 58 ms
13,056 KB
testcase_12 WA -
testcase_13 AC 77 ms
19,028 KB
testcase_14 AC 92 ms
20,332 KB
testcase_15 AC 84 ms
20,004 KB
testcase_16 AC 73 ms
19,088 KB
testcase_17 AC 78 ms
18,676 KB
testcase_18 AC 75 ms
17,280 KB
testcase_19 AC 83 ms
19,844 KB
testcase_20 AC 83 ms
19,332 KB
testcase_21 AC 86 ms
20,056 KB
testcase_22 AC 92 ms
20,740 KB
testcase_23 AC 92 ms
20,796 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 94 ms
20,868 KB
testcase_27 AC 95 ms
20,996 KB
testcase_28 AC 90 ms
21,768 KB
testcase_29 AC 93 ms
21,764 KB
testcase_30 AC 91 ms
19,460 KB
testcase_31 AC 96 ms
21,640 KB
testcase_32 AC 78 ms
18,048 KB
testcase_33 AC 69 ms
17,536 KB
testcase_34 AC 94 ms
21,632 KB
testcase_35 AC 81 ms
19,332 KB
testcase_36 AC 83 ms
21,624 KB
testcase_37 AC 94 ms
21,760 KB
testcase_38 AC 75 ms
17,584 KB
testcase_39 AC 72 ms
16,256 KB
testcase_40 AC 75 ms
17,536 KB
testcase_41 AC 77 ms
16,000 KB
testcase_42 AC 75 ms
17,536 KB
testcase_43 AC 2 ms
5,248 KB
testcase_44 AC 5 ms
7,812 KB
testcase_45 AC 48 ms
12,568 KB
testcase_46 AC 72 ms
12,544 KB
testcase_47 AC 53 ms
12,544 KB
testcase_48 AC 64 ms
12,544 KB
testcase_49 AC 50 ms
12,504 KB
testcase_50 AC 52 ms
12,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define REP(i, n) for (int i = 0; (i) < (int)(n); ++(i))
#define REP3(i, m, n) for (int i = (m); (i) < (int)(n); ++(i))
#define REP_R(i, n) for (int i = (int)(n)-1; (i) >= 0; --(i))
#define REP3R(i, m, n) for (int i = (int)(n)-1; (i) >= (int)(m); --(i))
#define ALL(x) ::std::begin(x), ::std::end(x)
using namespace std;

std::vector<int> solve(int h, int w, int n, const std::vector<int> &x, const std::vector<int> &y) {
    vector<vector<int>> row(h);
    vector<vector<int>> col(w);
    REP (i, n) {
        row[y[i]].push_back(i);
        col[x[i]].push_back(i);
    }

    vector<bool> used(n);
    vector<int> ans;
    auto go = [&](auto &&go, int i, int parent) -> bool {
        if (used[i]) {
            auto it = find(ALL(ans), i);
            if (it != ans.end()) {
                int k = it - ans.begin();
                ans.erase(ans.begin(), it);
                if (k % 2 == 1) {
                    rotate(ans.begin(), ans.begin() + 1, ans.end());
                }
                return true;
            }
        }
        ans.push_back(i);
        used[i] = true;
        if (ans.size() % 2 == 0) {
            for (int j : row[y[i]]) {
                if (j != i and j != parent) {
                    if (go(go, j, i)) {
                        return true;
                    }
                }
            }
        } else {
            for (int j : col[x[i]]) {
                if (j != i and j != parent) {
                    if (go(go, j, i)) {
                        return true;
                    }
                }
            }
        }
        ans.pop_back();
        return false;
    };
    REP (i, n) {
        if (not used[i]) {
            if (go(go, i, -1)) {
                return ans;
            }
        }
    }
    return ans;
}

// generated by oj-template v4.8.0 (https://github.com/online-judge-tools/template-generator)
int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    int H, W;
    int N;
    std::cin >> H >> W >> N;
    std::vector<int> x(N), y(N);
    REP (i, N) { std::cin >> y[i] >> x[i]; -- x[i]; -- y[i]; }
    vector<int> ans = solve(H, W, N, x, y);
    if (ans.empty()) {
        std::cout << -1 << '\n';
    } else {
        std::cout << (int)ans.size() << '\n';
        REP (i, (int)ans.size()) { std::cout << ans[i] + 1 << ' '; }
        std::cout << '\n';
    }
    return 0;
}
0