結果

問題 No.2914 正閉路検出
ユーザー GOTKAKOGOTKAKO
提出日時 2024-10-04 22:32:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,855 bytes
コンパイル時間 2,624 ms
コンパイル使用メモリ 224,808 KB
実行使用メモリ 22,516 KB
最終ジャッジ日時 2024-10-04 22:32:47
合計ジャッジ時間 12,198 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 WA -
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,824 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 WA -
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 WA -
testcase_18 WA -
testcase_19 AC 11 ms
6,820 KB
testcase_20 AC 20 ms
6,816 KB
testcase_21 AC 7 ms
6,820 KB
testcase_22 AC 25 ms
6,816 KB
testcase_23 WA -
testcase_24 AC 131 ms
17,452 KB
testcase_25 AC 7 ms
6,820 KB
testcase_26 WA -
testcase_27 AC 34 ms
7,808 KB
testcase_28 AC 43 ms
8,968 KB
testcase_29 AC 104 ms
12,032 KB
testcase_30 AC 9 ms
6,912 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 98 ms
16,256 KB
testcase_36 WA -
testcase_37 AC 64 ms
22,516 KB
testcase_38 AC 45 ms
11,008 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 43 ms
11,008 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);

    int N,M; cin >> N >> M;
    vector<vector<tuple<int,int,long long>>> Graph(N);
    for(int i=0; i<M; i++){
        int u,v; cin >> u >> v;
        u--; v--;
        int 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,int>,vector<pair<long long,int>>,greater<>> Q;
    dist.at(0) = 0; Q.push({0,0});
    
    int 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;}

    bool end = false;
    vector<int> route;
    already.assign(M,false);
    auto dfs = [&](auto dfs,int pos,long long nowd) -> void {
        if(route.size() && pos == start){
            if(nowd >= 0) return;
            end = true;
            cout << route.size() << endl;
            cout << start+1 << endl;
            for(int i=0; i<route.size(); i++){
                if(i) cout << " ";
                cout << route.at(i)+1;
            }
            cout << endl;
            return;
        }
        for(auto [to,epos,w] : Graph.at(pos)){
            if(already.at(epos)) continue;
            already.at(epos) = true;
            route.push_back(epos);
            dfs(dfs,to,nowd+w);
            route.pop_back();
            if(end) break;
        }
    };
    dfs(dfs,start,0);
}
0