結果

問題 No.1477 Lamps on Graph
ユーザー H20H20
提出日時 2021-04-21 13:09:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 593 bytes
コンパイル時間 637 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 121,348 KB
最終ジャッジ日時 2024-07-04 05:55:34
合計ジャッジ時間 13,476 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 38 ms
52,608 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 WA -
testcase_06 AC 37 ms
51,712 KB
testcase_07 AC 39 ms
52,224 KB
testcase_08 AC 38 ms
51,840 KB
testcase_09 AC 37 ms
52,224 KB
testcase_10 WA -
testcase_11 AC 37 ms
51,840 KB
testcase_12 AC 236 ms
90,624 KB
testcase_13 AC 244 ms
93,048 KB
testcase_14 AC 281 ms
92,640 KB
testcase_15 AC 173 ms
82,480 KB
testcase_16 AC 168 ms
86,764 KB
testcase_17 AC 154 ms
86,040 KB
testcase_18 AC 281 ms
106,740 KB
testcase_19 AC 232 ms
92,808 KB
testcase_20 AC 140 ms
79,852 KB
testcase_21 AC 260 ms
105,340 KB
testcase_22 AC 122 ms
78,020 KB
testcase_23 AC 189 ms
83,712 KB
testcase_24 AC 324 ms
103,176 KB
testcase_25 AC 162 ms
81,792 KB
testcase_26 AC 321 ms
102,484 KB
testcase_27 AC 184 ms
83,840 KB
testcase_28 AC 213 ms
90,768 KB
testcase_29 AC 196 ms
85,120 KB
testcase_30 AC 165 ms
91,764 KB
testcase_31 AC 167 ms
87,296 KB
testcase_32 AC 360 ms
121,348 KB
testcase_33 AC 332 ms
118,800 KB
testcase_34 WA -
testcase_35 AC 389 ms
111,372 KB
testcase_36 AC 384 ms
109,680 KB
testcase_37 AC 353 ms
100,236 KB
testcase_38 AC 362 ms
103,104 KB
testcase_39 AC 367 ms
108,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
A=[-1]+list(map(int,input().split()))
AS= [[0] * 2 for i in range(N+1)]
for i,a in enumerate(A):
    AS[i][0]=i
    AS[i][1]=a

AS = sorted(AS, key=lambda x: x[1])

L = []
for i in range(N+1):
    L.append([])
for i in range(M):
    v,u = map(int,input().split())
    L[v].append(u)
    L[u].append(v)
K = int(input())
B=list(map(int,input().split()))
LAMP=[False]*(N+1)
for b in B:
    LAMP[b]=True
ANS = []
for i,a in AS:
    if LAMP[i]:
        ANS.append(i)
        for l in L[i]:
            LAMP[l]=not LAMP[l]
print(len(ANS))
for ans in ANS:
    print(ans)
0