結果

問題 No.1023 Cyclic Tour
ユーザー chocoruskchocorusk
提出日時 2020-04-07 18:29:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,317 ms / 2,000 ms
コード長 949 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 51,200 KB
最終ジャッジ日時 2024-07-07 20:38:26
合計ジャッジ時間 53,491 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 483 ms
15,104 KB
testcase_05 AC 475 ms
15,232 KB
testcase_06 AC 507 ms
15,488 KB
testcase_07 AC 489 ms
15,488 KB
testcase_08 AC 703 ms
35,456 KB
testcase_09 AC 689 ms
34,560 KB
testcase_10 AC 675 ms
34,432 KB
testcase_11 AC 745 ms
36,224 KB
testcase_12 AC 752 ms
39,168 KB
testcase_13 AC 695 ms
37,248 KB
testcase_14 AC 686 ms
37,376 KB
testcase_15 AC 722 ms
38,144 KB
testcase_16 AC 1,178 ms
50,816 KB
testcase_17 AC 1,151 ms
51,200 KB
testcase_18 AC 1,145 ms
50,944 KB
testcase_19 AC 1,133 ms
49,792 KB
testcase_20 AC 1,165 ms
37,632 KB
testcase_21 AC 1,161 ms
37,632 KB
testcase_22 AC 1,240 ms
42,112 KB
testcase_23 AC 1,273 ms
43,520 KB
testcase_24 AC 1,317 ms
49,792 KB
testcase_25 AC 1,132 ms
37,632 KB
testcase_26 AC 1,131 ms
38,400 KB
testcase_27 AC 1,052 ms
37,760 KB
testcase_28 AC 1,301 ms
48,768 KB
testcase_29 AC 1,282 ms
50,176 KB
testcase_30 AC 1,306 ms
48,768 KB
testcase_31 AC 1,196 ms
45,696 KB
testcase_32 AC 1,214 ms
46,848 KB
testcase_33 AC 1,303 ms
47,616 KB
testcase_34 AC 354 ms
20,736 KB
testcase_35 AC 801 ms
25,216 KB
testcase_36 AC 1,215 ms
39,296 KB
testcase_37 AC 1,166 ms
43,904 KB
testcase_38 AC 1,207 ms
47,616 KB
testcase_39 AC 1,242 ms
43,904 KB
testcase_40 AC 1,221 ms
44,800 KB
testcase_41 AC 1,250 ms
44,288 KB
testcase_42 AC 1,163 ms
38,016 KB
testcase_43 AC 1,208 ms
48,128 KB
testcase_44 AC 597 ms
24,832 KB
testcase_45 AC 735 ms
39,552 KB
testcase_46 AC 622 ms
39,552 KB
testcase_47 AC 582 ms
24,064 KB
testcase_48 AC 1,119 ms
38,400 KB
testcase_49 AC 1,113 ms
38,400 KB
testcase_50 AC 1,121 ms
38,016 KB
testcase_51 AC 1,093 ms
38,144 KB
testcase_52 AC 1,090 ms
41,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n, m=map(int, input().split())
par=[i for i in range(n)]
sz=[1]*n
def find(x):
    if x==par[x]:
        return x
    par[x]=find(par[x])
    return par[x]
def unite(x, y):
    x=find(x)
    y=find(y)
    if x==y:
        return False
    if sz[x]>sz[y]:
        x, y=y, x
    sz[y]+=sz[x]
    par[x]=y
    return True
e=[]
for _ in range(m):
    a, b, c=map(int, input().split())
    a-=1
    b-=1
    if c==1:
        if not unite(a, b):
            print("Yes")
            exit()
    else:
        e.append((a, b))
g=[[] for i in range(n)]
deg=[0]*n
for p in e:
    x=find(p[0])
    y=find(p[1])
    g[x].append(y)
    deg[y]+=1
que=deque()
for x in range(n):
    if deg[x]==0:
        que.appendleft(x)
while len(que)!=0:
    x=que.popleft()
    for y in g[x]:
        deg[y]-=1
        if deg[y]==0:
            que.appendleft(y)
for x in range(n):
    if deg[x]>0:
        print("Yes")
        exit()
print("No")
0