結果

問題 No.2914 正閉路検出
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-10-07 13:22:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 2,383 bytes
コンパイル時間 2,463 ms
コンパイル使用メモリ 223,972 KB
実行使用メモリ 14,976 KB
最終ジャッジ日時 2024-10-07 13:22:44
合計ジャッジ時間 10,161 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 1 ms
6,820 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 1 ms
6,820 KB
testcase_09 AC 1 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 1 ms
6,816 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 10 ms
6,816 KB
testcase_20 AC 20 ms
7,680 KB
testcase_21 AC 7 ms
6,820 KB
testcase_22 AC 25 ms
8,064 KB
testcase_23 AC 17 ms
7,296 KB
testcase_24 AC 27 ms
8,448 KB
testcase_25 AC 3 ms
6,816 KB
testcase_26 AC 5 ms
6,820 KB
testcase_27 AC 33 ms
9,856 KB
testcase_28 AC 44 ms
11,264 KB
testcase_29 AC 75 ms
13,976 KB
testcase_30 AC 16 ms
7,808 KB
testcase_31 AC 35 ms
9,984 KB
testcase_32 AC 46 ms
11,264 KB
testcase_33 AC 11 ms
7,808 KB
testcase_34 AC 76 ms
14,072 KB
testcase_35 AC 68 ms
14,080 KB
testcase_36 AC 83 ms
14,080 KB
testcase_37 AC 52 ms
14,592 KB
testcase_38 AC 43 ms
13,440 KB
testcase_39 AC 77 ms
14,592 KB
testcase_40 AC 80 ms
14,976 KB
testcase_41 AC 82 ms
14,848 KB
testcase_42 AC 78 ms
14,720 KB
testcase_43 AC 76 ms
14,976 KB
testcase_44 AC 70 ms
14,336 KB
testcase_45 AC 78 ms
14,848 KB
testcase_46 AC 85 ms
14,976 KB
testcase_47 AC 79 ms
14,976 KB
testcase_48 AC 75 ms
14,592 KB
testcase_49 AC 74 ms
14,936 KB
testcase_50 AC 74 ms
14,848 KB
testcase_51 AC 45 ms
13,440 KB
testcase_52 AC 42 ms
13,400 KB
testcase_53 AC 44 ms
13,540 KB
testcase_54 AC 43 ms
13,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

void fast_io() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
}

int main() {
    fast_io();
    int n, m;
    cin >> n >> m;
    vector<vector<tuple<int, long long, int>>> g(n);
    for (int i = 1; i <= m; i++) {
        int u, v, w;
        cin >> u >> v >> w;
        u--, v--;
        g[u].push_back({v, w, i});
        g[v].push_back({u, -w, i});
    }
    vector<bool> vis(n);
    vector<long long> potential(n);
    vector<pair<int, int>> par(n);
    for (int i = 0; i < n; i++) {
        if (vis[i]) {
            continue;
        }
        deque<int> dq;
        dq.push_back(i);
        vis[i] = true;
        par[i] = {-1, -1};
        while (!dq.empty()) {
            int u = dq.front();
            dq.pop_front();
            for (auto [v, w, i] : g[u]) {
                if (!vis[v]) {
                    vis[v] = true;
                    par[v] = {u, i};
                    potential[v] = potential[u] + w;
                    dq.push_back(v);
                    continue;
                }
                if (potential[v] == potential[u] + w) {
                    continue;
                }
                if (potential[v] < potential[u] + w) {
                    swap(u, v);
                }
                vector<int> path_u, path_v;
                int x = u, y = v;
                while (x != -1) {
                    path_u.push_back(par[x].second);
                    x = par[x].first;
                }
                while (y != -1) {
                    path_v.push_back(par[y].second);
                    y = par[y].first;
                }
                while (!path_u.empty() && !path_v.empty() &&
                       path_u.back() == path_v.back()) {
                    path_u.pop_back();
                    path_v.pop_back();
                }
                vector<int> ans = path_u;
                reverse(path_v.begin(), path_v.end());
                ans.insert(ans.end(), path_v.begin(), path_v.end());
                ans.push_back(i);
                int M = ans.size();
                cout << M << endl;
                cout << u + 1 << endl;
                for (int i = 0; i < M; i++) {
                    cout << ans[i] << (i + 1 == M ? "\n" : " ");
                }
                return 0;
            }
        }
    }
    cout << -1 << endl;
}
0