結果

問題 No.1023 Cyclic Tour
ユーザー tamatotamato
提出日時 2020-04-10 22:01:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 468 ms / 2,000 ms
コード長 2,125 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 137,628 KB
最終ジャッジ日時 2024-09-15 20:21:30
合計ジャッジ時間 18,814 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 41 ms
52,480 KB
testcase_04 AC 174 ms
87,808 KB
testcase_05 AC 171 ms
88,064 KB
testcase_06 AC 179 ms
89,728 KB
testcase_07 AC 174 ms
88,064 KB
testcase_08 AC 334 ms
118,176 KB
testcase_09 AC 328 ms
116,840 KB
testcase_10 AC 331 ms
117,136 KB
testcase_11 AC 347 ms
119,460 KB
testcase_12 AC 309 ms
123,144 KB
testcase_13 AC 301 ms
122,740 KB
testcase_14 AC 299 ms
122,292 KB
testcase_15 AC 299 ms
123,608 KB
testcase_16 AC 411 ms
136,596 KB
testcase_17 AC 415 ms
137,336 KB
testcase_18 AC 413 ms
132,952 KB
testcase_19 AC 407 ms
133,276 KB
testcase_20 AC 310 ms
111,712 KB
testcase_21 AC 319 ms
114,092 KB
testcase_22 AC 406 ms
116,792 KB
testcase_23 AC 410 ms
117,120 KB
testcase_24 AC 468 ms
129,076 KB
testcase_25 AC 321 ms
115,072 KB
testcase_26 AC 303 ms
108,168 KB
testcase_27 AC 277 ms
103,056 KB
testcase_28 AC 440 ms
125,884 KB
testcase_29 AC 431 ms
128,476 KB
testcase_30 AC 450 ms
125,020 KB
testcase_31 AC 424 ms
122,772 KB
testcase_32 AC 421 ms
127,508 KB
testcase_33 AC 457 ms
125,644 KB
testcase_34 AC 163 ms
92,648 KB
testcase_35 AC 204 ms
92,820 KB
testcase_36 AC 384 ms
114,432 KB
testcase_37 AC 438 ms
124,160 KB
testcase_38 AC 442 ms
127,200 KB
testcase_39 AC 434 ms
117,736 KB
testcase_40 AC 441 ms
121,112 KB
testcase_41 AC 450 ms
119,356 KB
testcase_42 AC 290 ms
107,392 KB
testcase_43 AC 454 ms
126,172 KB
testcase_44 AC 194 ms
94,740 KB
testcase_45 AC 259 ms
137,628 KB
testcase_46 AC 236 ms
137,624 KB
testcase_47 AC 158 ms
93,832 KB
testcase_48 AC 236 ms
104,900 KB
testcase_49 AC 243 ms
106,240 KB
testcase_50 AC 224 ms
104,268 KB
testcase_51 AC 232 ms
105,984 KB
testcase_52 AC 194 ms
104,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    input = sys.stdin.buffer.readline

    def yes():
        print('Yes')
        exit()

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

        def find_root(self, x):
            while self.root[x] >= 0:
                x = self.root[x]
            return x

        def unite(self, x, y):
            x = self.find_root(x)
            y = self.find_root(y)
            if x == y:
                return
            elif self.rnk[x] > self.rnk[y]:
                self.root[x] += self.root[y]
                self.root[y] = x
            else:
                self.root[y] += self.root[x]
                self.root[x] = y
                if self.rnk[x] == self.rnk[y]:
                    self.rnk[y] += 1

        def isSameGroup(self, x, y):
            return self.find_root(x) == self.find_root(y)

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

    N, M = map(int, input().split())
    adj = [[] for _ in range(N+1)]
    edge1 = []
    edge2 = []
    for _ in range(M):
        a, b, c = map(int, input().split())
        if c == 1:
            edge1.append((a, b))
        else:
            edge2.append((a, b))
    UF = UnionFind(N)
    for a, b in edge1:
        if UF.isSameGroup(a, b):
            yes()
        else:
            UF.unite(a, b)
    adj_new = [set() for _ in range(N+1)]
    adj_new_rev = [set() for _ in range(N+1)]
    for a, b in edge2:
        ar = UF.find_root(a)
        br = UF.find_root(b)
        adj_new[ar].add(br)
        adj_new_rev[br].add(ar)

    cnt = 0
    st = []
    in_num = [0] * (N+1)
    for v in range(1, N+1):
        if len(adj_new_rev[v]) == 0:
            st.append(v)
        else:
            in_num[v] = len(adj_new_rev[v])
    while st:
        v = st.pop()
        cnt += 1
        for u in adj_new[v]:
            in_num[u] -= 1
            if in_num[u] == 0:
                st.append(u)
    if cnt == N:
        print('No')
    else:
        print('Yes')


if __name__ == '__main__':
    main()
0