結果
問題 | No.1477 Lamps on Graph |
ユーザー | titia |
提出日時 | 2021-04-16 21:30:19 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 807 bytes |
コンパイル時間 | 771 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 39,588 KB |
最終ジャッジ日時 | 2024-07-03 00:52:12 |
合計ジャッジ時間 | 11,984 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
17,820 KB |
testcase_01 | AC | 31 ms
10,880 KB |
testcase_02 | AC | 31 ms
11,008 KB |
testcase_03 | WA | - |
testcase_04 | AC | 32 ms
10,752 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 33 ms
10,880 KB |
testcase_08 | AC | 35 ms
10,624 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 31 ms
10,752 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: if LIGHT[i]==1: Q.append((i,1)) ANS.append(i) else: Q.append((i,0)) while Q: #print(Q) now,t=Q.pop() for to in E[now]: if t!=LIGHT[to]: ANS.append(to) Q.append((to,LIGHT[to])) print(len(ANS)) print("\n".join(map(str,ANS)))