結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 27 ms
10,880 KB
testcase_08 AC 27 ms
10,880 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 249 ms
42,112 KB
testcase_11 AC 26 ms
10,752 KB
testcase_12 AC 26 ms
10,624 KB
testcase_13 AC 25 ms
10,752 KB
testcase_14 AC 1,072 ms
103,168 KB
testcase_15 AC 1,058 ms
103,168 KB
testcase_16 AC 944 ms
64,000 KB
testcase_17 AC 992 ms
64,000 KB
testcase_18 AC 467 ms
37,376 KB
testcase_19 AC 637 ms
61,056 KB
testcase_20 AC 986 ms
67,072 KB
testcase_21 AC 988 ms
67,328 KB
testcase_22 AC 734 ms
26,368 KB
testcase_23 AC 914 ms
36,096 KB
testcase_24 AC 804 ms
30,848 KB
testcase_25 AC 1,671 ms
85,248 KB
testcase_26 AC 1,194 ms
103,168 KB
testcase_27 AC 1,081 ms
85,248 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