結果

問題 No.2914 正閉路検出
ユーザー rlangevinrlangevin
提出日時 2024-10-04 23:15:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 482 ms / 2,000 ms
コード長 2,560 bytes
コンパイル時間 1,431 ms
コンパイル使用メモリ 81,600 KB
実行使用メモリ 113,384 KB
最終ジャッジ日時 2024-10-04 23:16:05
合計ジャッジ時間 12,065 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,720 KB
testcase_01 AC 36 ms
54,228 KB
testcase_02 AC 36 ms
54,656 KB
testcase_03 AC 43 ms
54,956 KB
testcase_04 AC 36 ms
53,792 KB
testcase_05 AC 35 ms
54,592 KB
testcase_06 AC 35 ms
54,672 KB
testcase_07 AC 35 ms
55,832 KB
testcase_08 AC 35 ms
54,164 KB
testcase_09 AC 34 ms
54,328 KB
testcase_10 AC 36 ms
55,920 KB
testcase_11 AC 36 ms
55,916 KB
testcase_12 AC 37 ms
55,208 KB
testcase_13 AC 37 ms
54,484 KB
testcase_14 AC 37 ms
55,408 KB
testcase_15 AC 37 ms
55,024 KB
testcase_16 AC 38 ms
55,004 KB
testcase_17 AC 36 ms
54,996 KB
testcase_18 AC 36 ms
54,228 KB
testcase_19 AC 70 ms
77,376 KB
testcase_20 AC 81 ms
80,088 KB
testcase_21 AC 62 ms
76,592 KB
testcase_22 AC 95 ms
80,288 KB
testcase_23 AC 90 ms
79,900 KB
testcase_24 AC 120 ms
83,624 KB
testcase_25 AC 65 ms
77,132 KB
testcase_26 AC 72 ms
76,548 KB
testcase_27 AC 115 ms
82,464 KB
testcase_28 AC 194 ms
84,612 KB
testcase_29 AC 270 ms
86,912 KB
testcase_30 AC 74 ms
78,568 KB
testcase_31 AC 165 ms
86,796 KB
testcase_32 AC 225 ms
89,968 KB
testcase_33 AC 85 ms
82,012 KB
testcase_34 AC 372 ms
105,368 KB
testcase_35 AC 386 ms
103,148 KB
testcase_36 AC 482 ms
105,180 KB
testcase_37 AC 162 ms
113,384 KB
testcase_38 AC 97 ms
85,472 KB
testcase_39 AC 155 ms
99,996 KB
testcase_40 AC 205 ms
112,012 KB
testcase_41 AC 174 ms
103,700 KB
testcase_42 AC 207 ms
113,036 KB
testcase_43 AC 189 ms
111,008 KB
testcase_44 AC 134 ms
98,816 KB
testcase_45 AC 178 ms
110,304 KB
testcase_46 AC 178 ms
109,988 KB
testcase_47 AC 183 ms
107,968 KB
testcase_48 AC 138 ms
100,936 KB
testcase_49 AC 182 ms
108,644 KB
testcase_50 AC 187 ms
108,276 KB
testcase_51 AC 127 ms
83,936 KB
testcase_52 AC 167 ms
90,308 KB
testcase_53 AC 172 ms
89,940 KB
testcase_54 AC 160 ms
89,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

# https://at274.hatenablog.com/entry/2018/02/03/140504
class WeightedUnionFind:
    def __init__(self, n):
        self.par = [i for i in range(n+1)]
        self.rank = [0] * (n+1)
        # 根への距離を管理
        self.weight = [0] * (n+1)

    # 検索
    def find(self, x):
        if self.par[x] == x:
            return x
        else:
            y = self.find(self.par[x])
            # 親への重みを追加しながら根まで走査
            self.weight[x] += self.weight[self.par[x]]
            self.par[x] = y
            return y

    # 併合
    def union(self, x, y, w):
        rx = self.find(x)
        ry = self.find(y)
        # xの木の高さ < yの木の高さ
        if self.rank[rx] < self.rank[ry]:
            self.par[rx] = ry
            self.weight[rx] = w - self.weight[x] + self.weight[y]
        # xの木の高さ ≧ yの木の高さ
        else:
            self.par[ry] = rx
            self.weight[ry] = -w - self.weight[y] + self.weight[x]
            # 木の高さが同じだった場合の処理
            if self.rank[rx] == self.rank[ry]:
                self.rank[rx] += 1

    # 同じ集合に属するか
    def same(self, x, y):
        return self.find(x) == self.find(y)

    # xからyへのコスト
    def diff(self, x, y):
        return self.weight[x] - self.weight[y]
    
    
from collections import deque
def bfs(G, s):
    Q = deque([s])
    N = len(G)
    dist = [-1] * N
    par = [-1] * N
    dist[s] = 0
    while Q:
        u = Q.popleft()
        for v, i in G[u]:
            if dist[v] != -1:
                continue
            dist[v] = dist[u] + 1
            par[v] = (u, i)
            Q.append(v)

    return par

    
N, M = map(int, input().split())
U = WeightedUnionFind(N)
flag = 1
Edge = []
start, goal = -1, -1
for i in range(M):
    u, v, w = map(int, input().split())
    u, v = u - 1, v - 1
    if U.same(u, v) and U.diff(u, v) != w:
        if U.diff(u, v) < w:
            flag = 1
        else:
            flag = 0
        start = u
        goal = v
        break
    U.union(u, v, w)
    Edge.append((u, v))

if start == -1:
    print(-1)
    exit()
    
G = [[] for i in range(N)]
for i in range(len(Edge)):
    u, v = Edge[i]
    G[u].append((v, i))
    G[v].append((u, i))
    
par = bfs(G, start)
ans = []
while goal != start:
    nv, ni = par[goal]
    ans.append(ni + 1)
    goal = nv
    
ans = [len(Edge) + 1] + ans
if flag == 0:
    ans.reverse()
    
print(len(ans))
print(start + 1)
print(*ans)
0