結果

問題 No.1477 Lamps on Graph
ユーザー taiga000629taiga000629
提出日時 2021-04-16 22:23:58
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 732 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 98,796 KB
最終ジャッジ日時 2024-07-03 02:23:13
合計ジャッジ時間 9,167 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,728 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 40 ms
52,200 KB
testcase_04 AC 41 ms
52,352 KB
testcase_05 AC 42 ms
52,096 KB
testcase_06 AC 42 ms
51,840 KB
testcase_07 AC 42 ms
52,096 KB
testcase_08 AC 41 ms
52,096 KB
testcase_09 AC 41 ms
52,096 KB
testcase_10 AC 42 ms
51,968 KB
testcase_11 AC 41 ms
52,096 KB
testcase_12 AC 495 ms
90,608 KB
testcase_13 AC 416 ms
92,584 KB
testcase_14 AC 600 ms
92,324 KB
testcase_15 AC 643 ms
83,968 KB
testcase_16 AC 223 ms
84,096 KB
testcase_17 AC 225 ms
84,096 KB
testcase_18 AC 250 ms
98,796 KB
testcase_19 AC 357 ms
89,132 KB
testcase_20 AC 349 ms
81,536 KB
testcase_21 AC 234 ms
93,896 KB
testcase_22 TLE -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
a=[-1]+list(map(int,input().split()))
root=[[] for i in range(n+1)]
rootr=[[] for i in range(n+1)]
import sys
sys.setrecursionlimit(10**9)
for i in range(m):
    v,u=map(int,input().split())
    if a[v]>a[u]:
        root[u].append(v)
        rootr[v].append(u)
    elif a[u]>a[v]:
        root[v].append(u)
        rootr[u].append(v)
memo=[-1]*(n+1)
light=[0]*(n+1)
ans=[]
k=int(input())
b=list(map(int,input().split()))
for x in b:light[x]=1
def ch(x):
    light[x]^=1
    ans.append(x)
    for nod in root[x]:
        light[nod]^=1
def f(x):
    if memo[x]==1:pass
    for nod in rootr[x]:f(nod)
    if light[x]==1:ch(x)
    memo[x]=1
for i in range(1,n+1):f(i)
print(len(ans))
for x in ans:print(x)
0