結果

問題 No.1023 Cyclic Tour
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-29 02:38:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 339 ms / 2,000 ms
コード長 1,828 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 105,168 KB
最終ジャッジ日時 2024-10-04 10:08:39
合計ジャッジ時間 14,241 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 AC 190 ms
78,208 KB
testcase_05 AC 178 ms
77,440 KB
testcase_06 AC 201 ms
78,464 KB
testcase_07 AC 201 ms
78,208 KB
testcase_08 AC 168 ms
87,088 KB
testcase_09 AC 204 ms
94,208 KB
testcase_10 AC 203 ms
94,336 KB
testcase_11 AC 212 ms
97,100 KB
testcase_12 AC 164 ms
93,952 KB
testcase_13 AC 166 ms
94,336 KB
testcase_14 AC 157 ms
93,824 KB
testcase_15 AC 169 ms
93,952 KB
testcase_16 AC 180 ms
91,896 KB
testcase_17 AC 184 ms
91,904 KB
testcase_18 AC 182 ms
93,056 KB
testcase_19 AC 180 ms
91,264 KB
testcase_20 AC 313 ms
100,904 KB
testcase_21 AC 308 ms
102,400 KB
testcase_22 AC 256 ms
100,224 KB
testcase_23 AC 256 ms
100,096 KB
testcase_24 AC 242 ms
99,072 KB
testcase_25 AC 339 ms
100,756 KB
testcase_26 AC 284 ms
100,224 KB
testcase_27 AC 299 ms
99,200 KB
testcase_28 AC 220 ms
100,108 KB
testcase_29 AC 232 ms
100,352 KB
testcase_30 AC 244 ms
101,504 KB
testcase_31 AC 236 ms
98,456 KB
testcase_32 AC 224 ms
96,768 KB
testcase_33 AC 239 ms
101,608 KB
testcase_34 AC 96 ms
79,744 KB
testcase_35 AC 186 ms
82,304 KB
testcase_36 AC 272 ms
101,260 KB
testcase_37 AC 260 ms
97,280 KB
testcase_38 AC 224 ms
98,756 KB
testcase_39 AC 287 ms
98,816 KB
testcase_40 AC 298 ms
100,096 KB
testcase_41 AC 281 ms
100,352 KB
testcase_42 AC 320 ms
88,288 KB
testcase_43 AC 165 ms
91,520 KB
testcase_44 AC 220 ms
92,672 KB
testcase_45 AC 149 ms
96,384 KB
testcase_46 AC 126 ms
92,800 KB
testcase_47 AC 114 ms
91,632 KB
testcase_48 AC 173 ms
105,168 KB
testcase_49 AC 178 ms
102,272 KB
testcase_50 AC 160 ms
104,576 KB
testcase_51 AC 140 ms
83,840 KB
testcase_52 AC 143 ms
88,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


class UF_tree:
    def __init__(self, n):
        self.root = [-1] * (n + 1)
        self.rank = [0] * (n + 1)

    def find(self, x):
        if self.root[x] < 0:
            return x
        else:
            self.root[x] = self.find(self.root[x])
            return self.root[x]

    def isSame(self, x, y):
        return self.find(x) == self.find(y)

    def unite(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return False
        elif self.rank[x] < self.rank[y]:
            self.root[y] += self.root[x]
            self.root[x] = y
        else:
            self.root[x] += self.root[y]
            self.root[y] = x
            if self.rank[x] == self.rank[y]:
                self.rank[x] += 1
        return True

    def size(self, x):
        return -self.root[self.find(x)]


def main():
    N, M = map(int, input().split())
    uf = UF_tree(N)
    edge = []
    for _ in range(M):
        a, b, c = map(int, input().split())
        a -= 1
        b -= 1
        if c == 1:
            if not uf.unite(a, b):
                return True
        else:
            edge.append((a, b))

    G = [[] for _ in range(N)]
    deg = [0] * N
    for a, b in edge:
        a = uf.find(a)
        b = uf.find(b)
        if a == b:
            return True
        deg[b] += 1
        G[a].append(b)

    # トポロジカル順が出来れば閉路なし
    que = []
    for i, d in enumerate(deg):
        if not d:
            que.append(i)
    topo = []
    while que:
        s = que.pop()
        topo.append(s)
        for t in G[s]:
            deg[t] -= 1
            if not deg[t]:
                que.append(t)
    return len(topo) != N


if main():
    print("Yes")
else:
    print("No")
0