結果

問題 No.2914 正閉路検出
ユーザー GOTKAKOGOTKAKO
提出日時 2024-10-04 22:52:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,419 bytes
コンパイル時間 2,361 ms
コンパイル使用メモリ 228,908 KB
実行使用メモリ 17,072 KB
最終ジャッジ日時 2024-10-04 22:52:16
合計ジャッジ時間 7,815 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 1 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 1 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 1 ms
6,816 KB
testcase_10 AC 1 ms
6,816 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 WA -
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 1 ms
6,820 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 1 ms
6,816 KB
testcase_19 AC 8 ms
6,816 KB
testcase_20 AC 17 ms
7,552 KB
testcase_21 AC 5 ms
6,824 KB
testcase_22 AC 20 ms
8,064 KB
testcase_23 AC 16 ms
7,296 KB
testcase_24 AC 23 ms
8,448 KB
testcase_25 AC 3 ms
6,820 KB
testcase_26 AC 5 ms
6,820 KB
testcase_27 AC 27 ms
9,856 KB
testcase_28 AC 36 ms
11,392 KB
testcase_29 AC 60 ms
13,568 KB
testcase_30 AC 8 ms
7,040 KB
testcase_31 AC 27 ms
9,984 KB
testcase_32 AC 37 ms
11,648 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 72 ms
15,860 KB
testcase_36 AC 74 ms
15,872 KB
testcase_37 AC 50 ms
16,068 KB
testcase_38 AC 38 ms
12,672 KB
testcase_39 AC 106 ms
16,464 KB
testcase_40 AC 77 ms
16,592 KB
testcase_41 AC 73 ms
17,064 KB
testcase_42 AC 66 ms
16,208 KB
testcase_43 AC 87 ms
16,444 KB
testcase_44 AC 80 ms
17,072 KB
testcase_45 AC 80 ms
16,700 KB
testcase_46 AC 74 ms
16,928 KB
testcase_47 AC 94 ms
16,968 KB
testcase_48 AC 85 ms
17,048 KB
testcase_49 AC 77 ms
16,692 KB
testcase_50 AC 81 ms
16,956 KB
testcase_51 AC 38 ms
12,672 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

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;
    dist.at(0) = 0; Q.push({0,0});
    
    long long start = -1;
    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){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