結果

問題 No.1023 Cyclic Tour
ユーザー ptotqptotq
提出日時 2020-04-10 22:45:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,741 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 106,672 KB
最終ジャッジ日時 2024-09-15 22:52:46
合計ジャッジ時間 14,328 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 190 ms
77,056 KB
testcase_05 AC 191 ms
77,440 KB
testcase_06 AC 190 ms
76,928 KB
testcase_07 AC 197 ms
77,952 KB
testcase_08 AC 189 ms
90,756 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 193 ms
91,528 KB
testcase_12 AC 185 ms
101,532 KB
testcase_13 AC 154 ms
88,348 KB
testcase_14 WA -
testcase_15 AC 182 ms
101,948 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 300 ms
92,544 KB
testcase_21 AC 307 ms
94,212 KB
testcase_22 AC 263 ms
93,912 KB
testcase_23 AC 286 ms
100,424 KB
testcase_24 AC 243 ms
96,672 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 117 ms
78,592 KB
testcase_35 AC 198 ms
81,664 KB
testcase_36 AC 296 ms
93,096 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 296 ms
98,016 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 295 ms
91,700 KB
testcase_43 AC 223 ms
98,632 KB
testcase_44 WA -
testcase_45 AC 176 ms
106,292 KB
testcase_46 WA -
testcase_47 AC 118 ms
80,512 KB
testcase_48 AC 162 ms
83,600 KB
testcase_49 AC 170 ms
84,556 KB
testcase_50 AC 156 ms
83,764 KB
testcase_51 AC 155 ms
83,288 KB
testcase_52 AC 162 ms
83,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline


class UnionFind(object):
    def __init__(self, n: int):
        self.nodes = [-1]*n

    def find(self, x: int) -> int:
        if self.nodes[x] < 0:
            return x
        else:
            self.nodes[x] = self.find(self.nodes[x])
            return self.nodes[x]

    def unite(self, x: int, y: int) -> bool:
        root_x, root_y, nodes = self.find(x), self.find(y), self.nodes

        if root_x != root_y:
            if nodes[root_x] > nodes[root_y]:
                root_x, root_y = root_y, root_x
            nodes[root_x] += nodes[root_y]
            nodes[root_y] = root_x

        return root_x != root_y


if __name__ == '__main__':
    N, M = map(int, input().split())
    edges = []
    uf = UnionFind(N)

    for u, v, c in (map(int, input().split()) for _ in range(M)):
        u -= 1
        v -= 1
        if c == 1:
            if not uf.unite(u, v):
                print('Yes')
                exit()
        else:
            edges.append((u, v))

    adj = [set() for _ in range(N)]
    rev = [set() for _ in range(N)]
    for u, v in edges:
        par_u, par_v = uf.find(u), uf.find(v)
        if par_u == par_v:
            print('Yes')
            exit()
        adj[par_u].add(par_v)

    visited = [-1]*N
    for i in range(N):
        if visited[i]:
            continue
        visited[i] = i
        stack = [i]

        while stack:
            v = stack.pop()
            for dest in adj[v]:
                if visited[dest] == i:
                    print('Yes')
                    exit()
                if visited[dest] != -1:
                    continue
                visited[dest] = i
                stack.append(dest)
    else:
        print('No')
0