結果

問題 No.1477 Lamps on Graph
ユーザー H20H20
提出日時 2021-04-21 13:11:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 404 ms / 2,000 ms
コード長 625 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 121,680 KB
最終ジャッジ日時 2024-07-04 05:56:21
合計ジャッジ時間 10,190 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 36 ms
52,224 KB
testcase_05 AC 37 ms
52,736 KB
testcase_06 AC 36 ms
51,940 KB
testcase_07 AC 37 ms
52,224 KB
testcase_08 AC 36 ms
52,224 KB
testcase_09 AC 36 ms
51,968 KB
testcase_10 AC 37 ms
51,968 KB
testcase_11 AC 36 ms
52,736 KB
testcase_12 AC 245 ms
90,884 KB
testcase_13 AC 231 ms
93,308 KB
testcase_14 AC 273 ms
92,784 KB
testcase_15 AC 170 ms
82,492 KB
testcase_16 AC 162 ms
86,252 KB
testcase_17 AC 162 ms
85,632 KB
testcase_18 AC 290 ms
106,544 KB
testcase_19 AC 234 ms
92,740 KB
testcase_20 AC 140 ms
79,988 KB
testcase_21 AC 254 ms
105,016 KB
testcase_22 AC 121 ms
78,120 KB
testcase_23 AC 182 ms
83,808 KB
testcase_24 AC 321 ms
102,656 KB
testcase_25 AC 160 ms
82,272 KB
testcase_26 AC 321 ms
102,476 KB
testcase_27 AC 181 ms
83,688 KB
testcase_28 AC 218 ms
90,496 KB
testcase_29 AC 198 ms
85,168 KB
testcase_30 AC 176 ms
91,912 KB
testcase_31 AC 168 ms
87,728 KB
testcase_32 AC 354 ms
121,412 KB
testcase_33 AC 349 ms
119,248 KB
testcase_34 AC 231 ms
121,680 KB
testcase_35 AC 403 ms
111,940 KB
testcase_36 AC 404 ms
109,820 KB
testcase_37 AC 345 ms
100,084 KB
testcase_38 AC 361 ms
103,664 KB
testcase_39 AC 377 ms
108,940 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]:
            if A[i]<A[l]:
                LAMP[l]=not LAMP[l]
print(len(ANS))
for ans in ANS:
    print(ans)


0