結果

問題 No.2914 正閉路検出
ユーザー momoyuumomoyuu
提出日時 2024-10-06 17:39:01
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 2,323 bytes
コンパイル時間 1,326 ms
コンパイル使用メモリ 107,728 KB
実行使用メモリ 37,544 KB
最終ジャッジ日時 2024-10-06 17:39:11
合計ジャッジ時間 9,540 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 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 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 10 ms
5,248 KB
testcase_20 AC 22 ms
8,064 KB
testcase_21 AC 7 ms
5,248 KB
testcase_22 AC 26 ms
8,704 KB
testcase_23 AC 18 ms
7,680 KB
testcase_24 AC 29 ms
9,344 KB
testcase_25 AC 3 ms
5,248 KB
testcase_26 AC 6 ms
5,248 KB
testcase_27 AC 36 ms
10,624 KB
testcase_28 AC 49 ms
13,696 KB
testcase_29 AC 90 ms
20,480 KB
testcase_30 AC 12 ms
7,680 KB
testcase_31 AC 34 ms
10,624 KB
testcase_32 AC 46 ms
13,696 KB
testcase_33 AC 10 ms
7,680 KB
testcase_34 AC 68 ms
16,896 KB
testcase_35 AC 75 ms
20,352 KB
testcase_36 AC 80 ms
20,864 KB
testcase_37 AC 71 ms
37,544 KB
testcase_38 AC 63 ms
36,520 KB
testcase_39 AC 83 ms
27,392 KB
testcase_40 AC 93 ms
36,404 KB
testcase_41 AC 88 ms
30,844 KB
testcase_42 AC 88 ms
37,128 KB
testcase_43 AC 91 ms
36,372 KB
testcase_44 AC 82 ms
26,856 KB
testcase_45 AC 92 ms
35,332 KB
testcase_46 AC 91 ms
34,748 KB
testcase_47 AC 92 ms
33,740 KB
testcase_48 AC 83 ms
28,288 KB
testcase_49 AC 91 ms
35,868 KB
testcase_50 AC 93 ms
33,672 KB
testcase_51 AC 45 ms
14,208 KB
testcase_52 AC 45 ms
14,208 KB
testcase_53 AC 45 ms
14,208 KB
testcase_54 AC 44 ms
14,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>

using namespace std;
using ll = long long;

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

    int n,m;
    cin>>n>>m;
    vector<vector<pair<ll,ll>>> g(n);
    vector<ll> u(m),v(m),w(m);
    for(int i = 0;i<m;i++){
        cin>>u[i]>>v[i]>>w[i];
        u[i]--;v[i]--;
        g[u[i]].push_back(make_pair(v[i],i));
        g[v[i]].push_back(make_pair(u[i],i));
    }

    vector<int> que;
    vector<int> used(m,0);
    vector<int> vis(n,0);
    vector<ll> p(n,0);

    vector<ll> ans;
    int st;
    bool fn = false;

    auto dfs = [&](auto dfs,int ni,ll now) -> void {
        vis[ni]++;
        p[ni] = now;
        for(auto itr:g[ni]){
            int id = itr.second;
            if(used[id]) continue;
            int to = itr.first;
            if(vis[to]==0){
                ll nxt = now;
                if(u[id]==ni) nxt += w[id];
                else nxt -= w[id];
                used[id] = 1;
                que.push_back(id);
                dfs(dfs,to,nxt);
                if(fn) return;
                que.pop_back();
            }else{
                ll nxt = now;
                if(u[id]==ni) nxt += w[id];
                else nxt -= w[id];
                if(p[to]==nxt) continue;
                int pp = ni;
                while(pp!=to){
                    int nj = que.back();
                    que.pop_back();
                    ans.push_back(nj);
                    if(pp==u[nj]) pp = v[nj];
                    else pp = u[nj];
                }
                ans.push_back(id);
                st = ni;
                fn = true;
                return;
            }
        }
    };
    for(int i = 0;i<n;i++){
        if(vis[i]) continue;
        dfs(dfs,i,0);
        if(fn) break;
    }

    if(ans.empty()){
        cout<<-1<<endl;
        return 0;
    }
    cout<<ans.size()<<endl;
    cout<<st+1<<endl;
    ll now = 0;
    for(int i = 0;i<ans.size();i++){
        if(st==u[ans[i]]){
            now += w[ans[i]];
            st = v[ans[i]];
        }else{
            now -= w[ans[i]];
            st = u[ans[i]];
        }
    }
    if(now<0) reverse(ans.begin(),ans.end());
    for(int i = 0;i<ans.size();i++){
        if(i) cout<<" ";
        cout<<ans[i]+1;
    }
    cout<<endl;

}   


0