結果

問題 No.2914 正閉路検出
ユーザー titiatitia
提出日時 2024-10-29 03:13:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,847 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 17,956 KB
最終ジャッジ日時 2024-10-29 03:13:45
合計ジャッジ時間 7,229 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
17,956 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 31 ms
11,008 KB
testcase_03 AC 30 ms
11,136 KB
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,M=map(int,input().split())

EDGE=[list(map(int,input().split())) for i in range(M)]

Group = [i for i in range(N+1)] # グループ分け
Nodes = [1]*(N+1) # 各グループのノードの数
Weight = [0]*(N+1) # 木の親からnode xまでの距離

def find(x):
    ANS=Weight[x]
    while Group[x] != x:
        x=Group[x]
        ANS+=Weight[x]
    return x,ANS

def Union(x,y,z): # xからyの距離がz
    if find(x)[0] != find(y)[0]:
        if Nodes[find(x)[0]] < Nodes[find(y)[0]]:
            Weight[find(x)[0]]=-z+find(y)[1]-find(x)[1]
            
            Nodes[find(y)[0]] += Nodes[find(x)[0]]
            Nodes[find(x)[0]] = 0
            Group[find(x)[0]] = find(y)[0]
            
        else:
            Weight[find(y)[0]]=z+find(x)[1]-find(y)[1]
            
            Nodes[find(x)[0]] += Nodes[find(y)[0]]
            Nodes[find(y)[0]] = 0
            Group[find(y)[0]] = find(x)[0]

E=[[] for i in range(N+1)]
x0,y0=-1,-1

for i in range(M):
    x,y,w = EDGE[i]
    if find(x)[0]!=find(y)[0]:
        Union(x,y,w)
        E[x].append((y,w,i+1))
        E[y].append((x,-w,i+1))
    else:
        kx=find(x)[1]
        ky=find(y)[1]

        if ky-kx==w:
            pass
        else:
            x0,y0=x,y
            last=i+1
            lastw=w

if x0==-1 and y0==-1:
    print(-1)
    exit()

now=x0
ANS=[]
USE=[0]*(N+1)
USE[now]=1
Q=[now]
FROM=[-1]*(N+1)
C=[0]*(N+1)

while Q:
    x=Q.pop()

    for to,cost,ind in E[x]:
        if USE[to]==0:
            FROM[to]=(x,ind)
            C[to]=C[x]+cost
            Q.append(to)
            
ANS=[]

now=y0
while now!=x0:
    fr,ind=FROM[now]
    ANS.append(ind)
    now=fr

if C[y0]-lastw<0:
    print(len(ANS)+1)
    print(x0)
    print(*[last]+ANS)
else:
    print(len(ANS)+1)
    print(x0)
    print(*([last]+ANS)[::-1])
0