結果

問題 No.1023 Cyclic Tour
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-29 02:19:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,855 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 92,928 KB
最終ジャッジ日時 2024-10-04 09:38:21
合計ジャッジ時間 12,707 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,352 KB
testcase_01 AC 34 ms
52,480 KB
testcase_02 AC 35 ms
52,224 KB
testcase_03 AC 35 ms
52,132 KB
testcase_04 AC 170 ms
78,044 KB
testcase_05 AC 159 ms
77,824 KB
testcase_06 AC 173 ms
78,232 KB
testcase_07 AC 179 ms
78,080 KB
testcase_08 AC 151 ms
86,016 KB
testcase_09 AC 160 ms
88,832 KB
testcase_10 AC 140 ms
84,736 KB
testcase_11 WA -
testcase_12 AC 151 ms
91,264 KB
testcase_13 AC 140 ms
88,448 KB
testcase_14 AC 121 ms
88,704 KB
testcase_15 AC 132 ms
88,704 KB
testcase_16 AC 140 ms
91,648 KB
testcase_17 AC 146 ms
91,264 KB
testcase_18 AC 143 ms
92,160 KB
testcase_19 AC 141 ms
90,576 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 264 ms
88,432 KB
testcase_26 AC 234 ms
87,384 KB
testcase_27 AC 265 ms
88,192 KB
testcase_28 AC 155 ms
88,248 KB
testcase_29 AC 148 ms
90,572 KB
testcase_30 AC 170 ms
87,628 KB
testcase_31 AC 168 ms
87,680 KB
testcase_32 AC 155 ms
88,576 KB
testcase_33 AC 185 ms
92,928 KB
testcase_34 AC 93 ms
79,872 KB
testcase_35 AC 176 ms
82,432 KB
testcase_36 WA -
testcase_37 AC 209 ms
89,216 KB
testcase_38 AC 157 ms
91,392 KB
testcase_39 WA -
testcase_40 AC 225 ms
89,988 KB
testcase_41 AC 198 ms
89,216 KB
testcase_42 AC 274 ms
87,448 KB
testcase_43 AC 147 ms
91,040 KB
testcase_44 AC 179 ms
79,872 KB
testcase_45 AC 127 ms
92,292 KB
testcase_46 AC 123 ms
92,160 KB
testcase_47 AC 84 ms
78,992 KB
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 128 ms
92,188 KB
testcase_51 AC 122 ms
83,744 KB
testcase_52 AC 119 ms
87,808 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)]
    for a, b in edge:
        a = uf.find(a)
        b = uf.find(b)
        if a == b:
            return True
        G[a].append(b)

    group = [-1] * N
    g = 0
    for i in range(N):
        if group[i] != -1:
            continue
        group[i] = g
        que = [i]
        while que:
            s = que.pop()
            for t in G[s]:
                if group[t] == g:
                    return True
                if group[t] == -1:
                    group[t] = g
                    que.append(t)
        g += 1
    return False


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