結果

問題 No.1023 Cyclic Tour
ユーザー ptotqptotq
提出日時 2020-04-13 22:25:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 921 ms / 2,000 ms
コード長 1,757 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 66,048 KB
最終ジャッジ日時 2024-09-25 11:04:19
合計ジャッジ時間 34,113 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 32 ms
11,008 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 237 ms
12,544 KB
testcase_05 AC 236 ms
12,544 KB
testcase_06 AC 255 ms
12,544 KB
testcase_07 AC 239 ms
12,672 KB
testcase_08 AC 414 ms
45,312 KB
testcase_09 AC 486 ms
45,184 KB
testcase_10 AC 470 ms
45,056 KB
testcase_11 AC 508 ms
47,232 KB
testcase_12 AC 534 ms
49,920 KB
testcase_13 AC 510 ms
47,488 KB
testcase_14 AC 508 ms
47,488 KB
testcase_15 AC 545 ms
48,128 KB
testcase_16 AC 767 ms
62,976 KB
testcase_17 AC 839 ms
63,744 KB
testcase_18 AC 775 ms
62,976 KB
testcase_19 AC 737 ms
61,568 KB
testcase_20 AC 719 ms
51,968 KB
testcase_21 AC 718 ms
53,760 KB
testcase_22 AC 788 ms
59,136 KB
testcase_23 AC 839 ms
61,312 KB
testcase_24 AC 870 ms
66,048 KB
testcase_25 AC 741 ms
54,528 KB
testcase_26 AC 681 ms
51,328 KB
testcase_27 AC 631 ms
48,256 KB
testcase_28 AC 868 ms
64,896 KB
testcase_29 AC 896 ms
64,896 KB
testcase_30 AC 921 ms
65,408 KB
testcase_31 AC 842 ms
61,696 KB
testcase_32 AC 829 ms
63,232 KB
testcase_33 AC 877 ms
65,024 KB
testcase_34 AC 177 ms
18,432 KB
testcase_35 AC 394 ms
24,448 KB
testcase_36 AC 787 ms
56,832 KB
testcase_37 AC 801 ms
59,520 KB
testcase_38 AC 851 ms
62,592 KB
testcase_39 AC 853 ms
59,776 KB
testcase_40 AC 843 ms
60,800 KB
testcase_41 AC 839 ms
60,672 KB
testcase_42 AC 639 ms
51,072 KB
testcase_43 AC 596 ms
57,856 KB
testcase_44 AC 368 ms
36,992 KB
testcase_45 AC 568 ms
49,792 KB
testcase_46 AC 507 ms
49,536 KB
testcase_47 AC 357 ms
36,352 KB
testcase_48 AC 645 ms
52,864 KB
testcase_49 AC 654 ms
52,736 KB
testcase_50 AC 631 ms
52,608 KB
testcase_51 AC 546 ms
52,736 KB
testcase_52 AC 582 ms
49,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
sys.setrecursionlimit(10**6)


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)]
    indeg = [0]*N
    outdeg = [0]*N
    for u, v in edges:
        par_u, par_v = uf.find(u), uf.find(v)
        if par_u == par_v:
            print('Yes')
            exit()
        if par_v not in adj[par_u]:
            adj[par_u].add(par_v)
            outdeg[par_u] += 1
            indeg[par_v] += 1

    stack = [i for i in range(N) if outdeg[i] and indeg[i] == 0]

    while stack:
        v = stack.pop()
        for dest in adj[v]:
            if indeg[dest] == 0:
                continue
            indeg[dest] -= 1
            if indeg[dest] == 0:
                stack.append(dest)

    if max(indeg) > 0:
        print('Yes')
    else:
        print('No')
0