結果
問題 | No.1477 Lamps on Graph |
ユーザー | titia |
提出日時 | 2021-04-16 21:35:46 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 737 bytes |
コンパイル時間 | 837 ms |
コンパイル使用メモリ | 82,648 KB |
実行使用メモリ | 325,072 KB |
最終ジャッジ日時 | 2024-07-03 00:59:57 |
合計ジャッジ時間 | 9,817 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
58,780 KB |
testcase_01 | AC | 39 ms
52,800 KB |
testcase_02 | AC | 38 ms
52,648 KB |
testcase_03 | AC | 38 ms
52,932 KB |
testcase_04 | AC | 38 ms
52,748 KB |
testcase_05 | AC | 38 ms
53,220 KB |
testcase_06 | WA | - |
testcase_07 | AC | 40 ms
52,868 KB |
testcase_08 | AC | 40 ms
53,956 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 38 ms
53,856 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
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 | -- | - |
ソースコード
N,M=map(int,input().split()) A=[0]+list(map(int,input().split())) E=[[] for i in range(N+1)] for i in range(M): u,v=map(int,input().split()) if A[u]>A[v]: E[v].append(u) elif A[v]>A[u]: E[u].append(v) K=int(input()) B=list(map(int,input().split())) LIGHT=[0]*(N+1) for b in B: LIGHT[b]=1 DEGIN=[0]*(N+1) for i in range(1,N+1): for k in E[i]: DEGIN[k]+=1 Q=[] ANS=[] for i in range(1,N+1): if DEGIN[i]==0: Q.append(i) while Q: now=Q.pop() if LIGHT[now]==1: ANS.append(now) for to in E[now]: LIGHT[to]^=1 for to in E[now]: Q.append(to) print(len(ANS)) print("\n".join(map(str,ANS)))