結果

問題 No.1477 Lamps on Graph
ユーザー nasubi24nasubi24
提出日時 2021-04-16 20:18:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 415 ms / 2,000 ms
コード長 645 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 112,008 KB
最終ジャッジ日時 2024-07-02 22:17:40
合計ジャッジ時間 10,192 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 38 ms
51,456 KB
testcase_02 AC 43 ms
52,096 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 40 ms
51,840 KB
testcase_06 AC 42 ms
51,840 KB
testcase_07 AC 39 ms
51,840 KB
testcase_08 AC 38 ms
52,352 KB
testcase_09 AC 39 ms
51,968 KB
testcase_10 AC 39 ms
51,944 KB
testcase_11 AC 40 ms
51,840 KB
testcase_12 AC 253 ms
87,364 KB
testcase_13 AC 242 ms
92,680 KB
testcase_14 AC 276 ms
91,036 KB
testcase_15 AC 166 ms
80,652 KB
testcase_16 AC 156 ms
82,984 KB
testcase_17 AC 153 ms
82,816 KB
testcase_18 AC 286 ms
102,616 KB
testcase_19 AC 240 ms
92,080 KB
testcase_20 AC 140 ms
78,208 KB
testcase_21 AC 243 ms
93,920 KB
testcase_22 AC 122 ms
77,508 KB
testcase_23 AC 188 ms
81,408 KB
testcase_24 AC 314 ms
99,716 KB
testcase_25 AC 160 ms
80,128 KB
testcase_26 AC 301 ms
98,128 KB
testcase_27 AC 179 ms
81,964 KB
testcase_28 AC 209 ms
85,780 KB
testcase_29 AC 212 ms
82,944 KB
testcase_30 AC 172 ms
91,048 KB
testcase_31 AC 164 ms
83,564 KB
testcase_32 AC 398 ms
112,008 KB
testcase_33 AC 371 ms
110,912 KB
testcase_34 AC 202 ms
111,392 KB
testcase_35 AC 406 ms
104,596 KB
testcase_36 AC 402 ms
103,196 KB
testcase_37 AC 360 ms
99,912 KB
testcase_38 AC 398 ms
100,676 KB
testcase_39 AC 415 ms
102,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
a=list(map(int,input().split()))
path=[[] for _ in range(n)]
for i in range(m):
    c,d=map(int,input().split())
    if a[c-1]<a[d-1]:path[c-1].append(d-1)
    if a[d-1]<a[c-1]:path[d-1].append(c-1)
seen=[False]*n
k=int(input())
b=list(map(int,input().split()))
for i in b:seen[i-1]=True
num=[[a[_],_] for _ in range(n)]
num.sort(key=lambda x: x[0])
ans=[]
for i in range(n):
    ind=num[i][1]
    if seen[ind]:
        ans.append(ind+1)
        for j in range(len(path[ind])):
            if seen[path[ind][j]]:seen[path[ind][j]]=False
            else:seen[path[ind][j]]=True
print(len(ans))
for i in ans:print(i)
0