結果

問題 No.1023 Cyclic Tour
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-03-31 08:52:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 441 ms / 2,000 ms
コード長 1,283 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 109,056 KB
最終ジャッジ日時 2024-11-16 10:39:02
合計ジャッジ時間 21,171 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,760 KB
testcase_01 AC 44 ms
54,016 KB
testcase_02 AC 44 ms
53,760 KB
testcase_03 AC 44 ms
53,760 KB
testcase_04 AC 269 ms
88,024 KB
testcase_05 AC 286 ms
88,228 KB
testcase_06 AC 286 ms
89,588 KB
testcase_07 AC 300 ms
89,032 KB
testcase_08 AC 273 ms
92,256 KB
testcase_09 AC 272 ms
92,160 KB
testcase_10 AC 279 ms
93,368 KB
testcase_11 AC 299 ms
97,152 KB
testcase_12 AC 268 ms
97,408 KB
testcase_13 AC 238 ms
91,264 KB
testcase_14 AC 238 ms
91,520 KB
testcase_15 AC 267 ms
96,512 KB
testcase_16 AC 325 ms
100,864 KB
testcase_17 AC 330 ms
101,248 KB
testcase_18 AC 347 ms
104,960 KB
testcase_19 AC 321 ms
100,480 KB
testcase_20 AC 441 ms
102,616 KB
testcase_21 AC 439 ms
102,744 KB
testcase_22 AC 407 ms
101,612 KB
testcase_23 AC 421 ms
104,312 KB
testcase_24 AC 406 ms
107,264 KB
testcase_25 AC 424 ms
103,636 KB
testcase_26 AC 432 ms
102,552 KB
testcase_27 AC 417 ms
103,532 KB
testcase_28 AC 372 ms
101,504 KB
testcase_29 AC 363 ms
106,240 KB
testcase_30 AC 394 ms
107,392 KB
testcase_31 AC 376 ms
105,600 KB
testcase_32 AC 370 ms
104,192 KB
testcase_33 AC 401 ms
107,008 KB
testcase_34 AC 268 ms
95,360 KB
testcase_35 AC 330 ms
96,640 KB
testcase_36 AC 406 ms
102,152 KB
testcase_37 AC 409 ms
105,752 KB
testcase_38 AC 369 ms
105,216 KB
testcase_39 AC 411 ms
102,512 KB
testcase_40 AC 413 ms
103,936 KB
testcase_41 AC 412 ms
103,748 KB
testcase_42 AC 431 ms
103,296 KB
testcase_43 AC 421 ms
105,088 KB
testcase_44 AC 303 ms
89,608 KB
testcase_45 AC 207 ms
88,576 KB
testcase_46 AC 194 ms
88,448 KB
testcase_47 AC 198 ms
88,704 KB
testcase_48 AC 318 ms
107,776 KB
testcase_49 AC 323 ms
108,032 KB
testcase_50 AC 310 ms
107,648 KB
testcase_51 AC 315 ms
107,392 KB
testcase_52 AC 311 ms
109,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

class Unionfind:
     
    def __init__(self,n):
        self.uf = [-1]*n
 
    def find(self,x):
        if self.uf[x] < 0:
            return x
        else:
            self.uf[x] = self.find(self.uf[x])
            return self.uf[x]
 
    def same(self,x,y):
        return self.find(x) == self.find(y)
 
    def union(self,x,y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return False
        if self.uf[x] > self.uf[y]:
            x,y = y,x
        self.uf[x] += self.uf[y]
        self.uf[y] = x
        return True
 
    def size(self,x):
        x = self.find(x)
        return -self.uf[x]

n,m = map(int,input().split())
R = [[int(x)-1 for x in input().split()] for i in range(m)]
uf = Unionfind(n)
for a,b,c in R:
    if c == 0:
        if uf.same(a,b):
            print("Yes")
            exit()
        uf.union(a,b)

e = [[] for i in range(n)]
out = [0]*n
for a,b,c in R:
    if c:
        e[uf.find(b)].append(uf.find(a))
        out[uf.find(a)] += 1
q = deque([])
for i in range(n):
    if out[i]:
        continue
    q.append(i)

while q:
    now = q.popleft()
    for nex in e[now]:
        out[nex] -= 1
        if out[nex] == 0:
            q.append(nex)
print("Yes" if sum(out) else "No")

0