結果

問題 No.2202 贅沢てりたまチキン
ユーザー lllllll88938494lllllll88938494
提出日時 2023-03-23 23:31:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,648 ms / 2,000 ms
コード長 673 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 103,424 KB
最終ジャッジ日時 2024-09-18 15:44:02
合計ジャッジ時間 15,360 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 25 ms
10,624 KB
testcase_05 AC 25 ms
10,624 KB
testcase_06 AC 25 ms
10,624 KB
testcase_07 AC 24 ms
10,624 KB
testcase_08 AC 24 ms
10,752 KB
testcase_09 AC 25 ms
10,624 KB
testcase_10 AC 247 ms
42,368 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 24 ms
10,496 KB
testcase_13 AC 26 ms
10,624 KB
testcase_14 AC 1,088 ms
103,296 KB
testcase_15 AC 1,071 ms
103,168 KB
testcase_16 AC 926 ms
64,128 KB
testcase_17 AC 953 ms
63,872 KB
testcase_18 AC 476 ms
37,248 KB
testcase_19 AC 643 ms
61,056 KB
testcase_20 AC 1,005 ms
67,072 KB
testcase_21 AC 972 ms
67,328 KB
testcase_22 AC 727 ms
26,496 KB
testcase_23 AC 833 ms
35,968 KB
testcase_24 AC 787 ms
31,104 KB
testcase_25 AC 1,648 ms
85,248 KB
testcase_26 AC 1,217 ms
103,424 KB
testcase_27 AC 1,039 ms
85,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)

n,m = map(int,input().split())
ue=[[] for i in range(n)]
shita=[[] for i in range(n)]
for i in range(m):
    x,y=map(int,input().split())
    x-=1
    y-=1
    ue[x].append(y)
    shita[y].append(x)
    ue[y].append(x)
    shita[x].append(y)


fu = [0]*n
fs = [0]*n
def  cal(x,f):
    if f == 0:
        fu[x] = 1
        for i in ue[x]:
            if fs[i] == 0:
                cal(i,1)
    else:
        fs[x] = 1
        for i in shita[x]:
            if fu[i] == 0:
                cal(i,0)

for i in range(n):
    if fu[i] == 0 and fs[i] == 0:
        cal(i,0)

if all(fu) and all(fs):
    print('Yes')
else:
    print('No')
0