結果

問題 No.1477 Lamps on Graph
ユーザー hir355hir355
提出日時 2021-04-16 20:13:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 610 ms / 2,000 ms
コード長 589 bytes
コンパイル時間 487 ms
コンパイル使用メモリ 81,564 KB
実行使用メモリ 117,532 KB
最終ジャッジ日時 2024-07-02 22:09:38
合計ジャッジ時間 13,458 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,328 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 39 ms
51,328 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 39 ms
51,840 KB
testcase_06 AC 40 ms
52,340 KB
testcase_07 AC 38 ms
51,328 KB
testcase_08 AC 39 ms
51,456 KB
testcase_09 AC 39 ms
52,096 KB
testcase_10 AC 40 ms
51,968 KB
testcase_11 AC 38 ms
52,224 KB
testcase_12 AC 350 ms
86,844 KB
testcase_13 AC 329 ms
89,760 KB
testcase_14 AC 389 ms
88,852 KB
testcase_15 AC 200 ms
81,168 KB
testcase_16 AC 199 ms
84,192 KB
testcase_17 AC 201 ms
83,908 KB
testcase_18 AC 411 ms
104,132 KB
testcase_19 AC 333 ms
90,088 KB
testcase_20 AC 158 ms
79,232 KB
testcase_21 AC 356 ms
97,852 KB
testcase_22 AC 130 ms
77,952 KB
testcase_23 AC 237 ms
81,920 KB
testcase_24 AC 445 ms
96,420 KB
testcase_25 AC 199 ms
80,384 KB
testcase_26 AC 434 ms
96,776 KB
testcase_27 AC 235 ms
82,816 KB
testcase_28 AC 302 ms
86,512 KB
testcase_29 AC 248 ms
83,712 KB
testcase_30 AC 222 ms
88,048 KB
testcase_31 AC 205 ms
84,864 KB
testcase_32 AC 493 ms
116,680 KB
testcase_33 AC 490 ms
115,440 KB
testcase_34 AC 228 ms
117,532 KB
testcase_35 AC 600 ms
110,536 KB
testcase_36 AC 610 ms
108,020 KB
testcase_37 AC 572 ms
102,212 KB
testcase_38 AC 594 ms
104,440 KB
testcase_39 AC 582 ms
108,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
a = list(map(lambda x:[int(x), 0], input().split()))
g = [[] for _ in range(n)]
for i in range(m):
    u, v = map(int, input().split())
    u -= 1
    v -= 1
    if a[u] > a[v]:
        g[v].append(u)
    elif a[v] > a[u]:
        g[u].append(v)
for i in range(n):
    a[i][1] = i
k = int(input())
b = list(map(int, input().split()))
t = [0] * n
for i in range(k):
    t[b[i] - 1] = 1
a.sort()
res = []
for x, i in a:
    if t[i] == 1:
        res.append(i + 1)
        for node in g[i]:
            t[node] ^= 1
print(len(res))
for x in res:
    print(x)
0