結果

問題 No.1477 Lamps on Graph
ユーザー toyuzukotoyuzuko
提出日時 2021-04-17 17:13:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 298 ms / 2,000 ms
コード長 700 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 112,196 KB
最終ジャッジ日時 2024-07-04 00:33:08
合計ジャッジ時間 10,469 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,888 KB
testcase_01 AC 41 ms
53,760 KB
testcase_02 AC 42 ms
53,760 KB
testcase_03 AC 42 ms
53,504 KB
testcase_04 AC 42 ms
53,504 KB
testcase_05 AC 41 ms
53,760 KB
testcase_06 AC 41 ms
54,016 KB
testcase_07 AC 42 ms
53,760 KB
testcase_08 AC 42 ms
53,632 KB
testcase_09 AC 42 ms
53,888 KB
testcase_10 AC 41 ms
53,760 KB
testcase_11 AC 41 ms
53,760 KB
testcase_12 AC 168 ms
84,512 KB
testcase_13 AC 166 ms
87,872 KB
testcase_14 AC 188 ms
88,712 KB
testcase_15 AC 109 ms
78,980 KB
testcase_16 AC 119 ms
82,304 KB
testcase_17 AC 123 ms
83,456 KB
testcase_18 AC 213 ms
99,616 KB
testcase_19 AC 167 ms
86,912 KB
testcase_20 AC 101 ms
78,080 KB
testcase_21 AC 192 ms
96,656 KB
testcase_22 AC 83 ms
77,184 KB
testcase_23 AC 119 ms
78,976 KB
testcase_24 AC 227 ms
96,696 KB
testcase_25 AC 110 ms
78,080 KB
testcase_26 AC 212 ms
92,784 KB
testcase_27 AC 127 ms
81,024 KB
testcase_28 AC 146 ms
84,576 KB
testcase_29 AC 134 ms
81,280 KB
testcase_30 AC 128 ms
87,260 KB
testcase_31 AC 142 ms
84,456 KB
testcase_32 AC 256 ms
112,196 KB
testcase_33 AC 250 ms
107,912 KB
testcase_34 AC 133 ms
108,420 KB
testcase_35 AC 298 ms
99,900 KB
testcase_36 AC 265 ms
99,996 KB
testcase_37 AC 255 ms
94,464 KB
testcase_38 AC 262 ms
94,208 KB
testcase_39 AC 264 ms
99,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline

from collections import deque

N, M = map(int, input().split())

A = list(map(int, input().split()))

g = [[] for _ in range(N)]
deg = [0] * N

for _ in range(M):
    u, v = map(int, input().split())
    u -= 1; v -= 1
    if A[u] < A[v]:
        g[u].append(v)
        deg[v] += 1
    elif A[u] > A[v]:
        g[v].append(u)
        deg[u] += 1

tps = sorted(range(N), key=lambda x: A[x])

K = int(input())
B = list(map(int, input().split()))

C = [0] * N

for b in B:
    C[b - 1] = 1

res = []

for v in tps:
    if C[v] == 1:
        for adj in g[v]:
            C[adj] ^= 1
        res.append(v + 1)

print(len(res))
print('\n'.join(map(str, res)))
0