結果

問題 No.2914 正閉路検出
ユーザー GOTKAKOGOTKAKO
提出日時 2024-10-04 22:56:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 2,568 bytes
コンパイル時間 2,919 ms
コンパイル使用メモリ 229,092 KB
実行使用メモリ 17,176 KB
最終ジャッジ日時 2024-10-04 22:56:35
合計ジャッジ時間 9,669 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 2 ms
6,820 KB
testcase_18 AC 2 ms
6,820 KB
testcase_19 AC 10 ms
6,820 KB
testcase_20 AC 22 ms
7,552 KB
testcase_21 AC 7 ms
6,816 KB
testcase_22 AC 24 ms
8,064 KB
testcase_23 AC 18 ms
7,296 KB
testcase_24 AC 28 ms
8,576 KB
testcase_25 AC 4 ms
6,816 KB
testcase_26 AC 6 ms
6,816 KB
testcase_27 AC 34 ms
9,856 KB
testcase_28 AC 49 ms
11,392 KB
testcase_29 AC 107 ms
13,440 KB
testcase_30 AC 16 ms
7,040 KB
testcase_31 AC 33 ms
9,984 KB
testcase_32 AC 49 ms
11,520 KB
testcase_33 AC 12 ms
9,344 KB
testcase_34 AC 138 ms
15,744 KB
testcase_35 AC 129 ms
15,872 KB
testcase_36 AC 136 ms
15,744 KB
testcase_37 AC 56 ms
16,068 KB
testcase_38 AC 42 ms
12,684 KB
testcase_39 AC 134 ms
16,588 KB
testcase_40 AC 148 ms
16,468 KB
testcase_41 AC 132 ms
17,064 KB
testcase_42 AC 119 ms
16,216 KB
testcase_43 AC 120 ms
16,444 KB
testcase_44 AC 136 ms
16,944 KB
testcase_45 AC 116 ms
16,700 KB
testcase_46 AC 120 ms
16,804 KB
testcase_47 AC 123 ms
16,964 KB
testcase_48 AC 125 ms
17,176 KB
testcase_49 AC 121 ms
16,568 KB
testcase_50 AC 130 ms
16,960 KB
testcase_51 AC 47 ms
12,544 KB
testcase_52 AC 47 ms
14,976 KB
testcase_53 RE -
testcase_54 AC 46 ms
14,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    long long N,M; cin >> N >> M;
    vector<vector<tuple<long long,long long,long long>>> Graph(N);
    for(long long i=0; i<M; i++){
        long long u,v; cin >> u >> v;
        u--; v--;
        long long w; cin >> w;
        Graph.at(u).push_back({v,i,-w});
        Graph.at(v).push_back({u,i,w});
    }

    vector<bool> already(N);
    vector<long long> dist(N,1e18);
    priority_queue<pair<long long,long long>,vector<pair<long long,long long>>,greater<>> Q;
    
    long long start = -1;
    for(int i=0; i<N; i++){
        if(dist.at(i) < 1e17) continue;
        dist.at(i) = 0; Q.push({0,i});
        while(Q.size()){
            auto [nowd,pos] = Q.top(); Q.pop();
            if(nowd != dist.at(pos)) continue;
            if(already.at(pos)){start = pos; break;}
            already.at(pos) = true;

            for(auto [to,epos,w] : Graph.at(pos)){
                if(dist.at(to) > dist.at(pos)+w){
                    dist.at(to) = dist.at(pos)+w;
                    Q.push({dist.at(to),to});
                }
            }
        }
        if(start != -1) break;
    }
    if(start == -1){cout << "-1\n"; return 0;}

    dist.assign(N,1e18); already.assign(N,false);
    dist.at(start) = 0;
    while(Q.size()) Q.pop();
    Q.push({0,start});
    vector<pair<long long,long long>> back(N);
    long long start2 = -1;
    vector<long long> route;
    vector<long long> first(N);
    while(Q.size()){
        auto [nowd,pos] = Q.top(); Q.pop();
        if(dist.at(pos) != nowd) continue;
        already.at(pos) = true;
        for(auto [to,epos,w] : Graph.at(pos)){
            if(dist.at(to) > nowd+w){
                if(to == start && nowd+w < 0){
                    route.push_back({epos});
                    start2 = pos; break;
                }
                else if(dist.at(to) > nowd+w && already.at(to) == false){
                    dist.at(to) = nowd+w;
                    Q.push({dist.at(to),to});
                    back.at(to) = {pos,epos};
                }
            }
        }
        if(route.size()) break;
    }
    assert(route.size());
    while(start2 != start){
        route.push_back(back.at(start2).second);
        start2 = back.at(start2).first;
    }

    reverse(route.begin(),route.end());

    cout << route.size() << endl;
    cout << start+1 << endl;
    for(long long i=0; i<route.size(); i++){
        if(i) cout << " ";
        cout << route.at(i)+1;
    }
    cout << endl;
}
0