結果
問題 | No.1477 Lamps on Graph |
ユーザー | trineutron |
提出日時 | 2021-04-16 20:14:41 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 858 ms / 2,000 ms |
コード長 | 583 bytes |
コンパイル時間 | 353 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 42,036 KB |
最終ジャッジ日時 | 2024-07-02 22:10:35 |
合計ジャッジ時間 | 16,858 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 38 |
ソースコード
n, m = map(int, input().split()) a = list(map(int, input().split())) to = [[] for _ in range(n)] for i in range(m): u, v = map(int, input().split()) u -= 1 v -= 1 if a[u] < a[v]: to[u].append(v) if a[v] < a[u]: to[v].append(u) k = int(input()) on = [False] * n b = list(map(int, input().split())) for i in b: on[i - 1] = True a_sorted = sorted([(a[i], i) for i in range(n)]) ans = [] for _, i in a_sorted: if on[i]: ans.append(i) for j in to[i]: on[j] = not on[j] print(len(ans)) for x in ans: print(x + 1)