結果

問題 No.1477 Lamps on Graph
ユーザー NoaSaberNoaSaber
提出日時 2021-04-17 11:47:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 260 ms / 2,000 ms
コード長 776 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 107,020 KB
最終ジャッジ日時 2024-07-03 18:38:31
合計ジャッジ時間 7,941 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,068 KB
testcase_01 AC 44 ms
54,992 KB
testcase_02 AC 40 ms
55,500 KB
testcase_03 AC 40 ms
54,244 KB
testcase_04 AC 36 ms
54,260 KB
testcase_05 AC 38 ms
54,868 KB
testcase_06 AC 37 ms
54,260 KB
testcase_07 AC 36 ms
53,668 KB
testcase_08 AC 37 ms
54,844 KB
testcase_09 AC 37 ms
54,796 KB
testcase_10 AC 37 ms
54,084 KB
testcase_11 AC 37 ms
54,260 KB
testcase_12 AC 179 ms
84,944 KB
testcase_13 AC 179 ms
88,876 KB
testcase_14 AC 204 ms
87,532 KB
testcase_15 AC 148 ms
79,892 KB
testcase_16 AC 116 ms
82,432 KB
testcase_17 AC 120 ms
82,096 KB
testcase_18 AC 162 ms
93,288 KB
testcase_19 AC 159 ms
87,228 KB
testcase_20 AC 138 ms
79,132 KB
testcase_21 AC 162 ms
92,500 KB
testcase_22 AC 114 ms
77,976 KB
testcase_23 AC 150 ms
80,416 KB
testcase_24 AC 207 ms
95,056 KB
testcase_25 AC 142 ms
79,396 KB
testcase_26 AC 196 ms
94,088 KB
testcase_27 AC 146 ms
80,864 KB
testcase_28 AC 153 ms
84,784 KB
testcase_29 AC 147 ms
81,724 KB
testcase_30 AC 116 ms
87,628 KB
testcase_31 AC 121 ms
82,972 KB
testcase_32 AC 188 ms
107,020 KB
testcase_33 AC 190 ms
106,980 KB
testcase_34 AC 168 ms
104,040 KB
testcase_35 AC 260 ms
98,168 KB
testcase_36 AC 246 ms
96,132 KB
testcase_37 AC 228 ms
95,084 KB
testcase_38 AC 234 ms
94,756 KB
testcase_39 AC 245 ms
95,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
A=list(map(int,input().split()))
edge=[[] for i in range(N)]
score=[0]*N
for i in range(M):
    u,v=map(int,input().split())
    u-=1;v-=1
    if A[u]<A[v]:
        score[v]+=1
        edge[u].append(v)
    if A[v]<A[u]:
        score[u]+=1
        edge[v].append(u)
K=int(input())
B=list(map(int,input().split()))
from collections import deque
q=deque([])
light=[0]*N
for i in B:
    light[i-1]=1
ans_l=[]
for i in range(N):
    if score[i]==0:
        q.append(i)
while q:
    first=q.popleft()
    if light[first]%2==1:
        ans_l.append(first)
    for i in edge[first]:
        if light[first]%2==1:
            light[i]+=1
        score[i]-=1
        if score[i]==0:
            q.append(i)
print(len(ans_l))
for i in ans_l:
    print(i+1)
0