結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 43 ms
51,840 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 195 ms
77,056 KB
testcase_05 AC 194 ms
76,928 KB
testcase_06 AC 196 ms
76,800 KB
testcase_07 AC 198 ms
77,312 KB
testcase_08 AC 191 ms
91,140 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 193 ms
91,140 KB
testcase_12 AC 184 ms
101,024 KB
testcase_13 AC 152 ms
87,972 KB
testcase_14 WA -
testcase_15 AC 183 ms
102,068 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 307 ms
92,416 KB
testcase_21 AC 309 ms
94,588 KB
testcase_22 AC 266 ms
93,268 KB
testcase_23 AC 292 ms
99,772 KB
testcase_24 AC 240 ms
96,056 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,848 KB
testcase_35 AC 198 ms
82,176 KB
testcase_36 AC 300 ms
92,968 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 299 ms
97,636 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 295 ms
91,252 KB
testcase_43 AC 222 ms
98,892 KB
testcase_44 WA -
testcase_45 AC 178 ms
106,160 KB
testcase_46 WA -
testcase_47 AC 118 ms
80,512 KB
testcase_48 AC 170 ms
83,764 KB
testcase_49 AC 173 ms
83,532 KB
testcase_50 AC 159 ms
84,152 KB
testcase_51 AC 156 ms
83,308 KB
testcase_52 AC 162 ms
83,512 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] = 1
                stack.append(dest)
    else:
        print('No')
0