結果

問題 No.1477 Lamps on Graph
ユーザー roarisroaris
提出日時 2021-04-16 21:29:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 471 ms / 2,000 ms
コード長 611 bytes
コンパイル時間 558 ms
コンパイル使用メモリ 81,496 KB
実行使用メモリ 107,248 KB
最終ジャッジ日時 2024-07-03 00:51:14
合計ジャッジ時間 15,036 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,368 KB
testcase_01 AC 38 ms
53,872 KB
testcase_02 AC 37 ms
52,636 KB
testcase_03 AC 36 ms
52,824 KB
testcase_04 AC 37 ms
53,192 KB
testcase_05 AC 37 ms
53,004 KB
testcase_06 AC 37 ms
52,704 KB
testcase_07 AC 38 ms
53,164 KB
testcase_08 AC 37 ms
52,936 KB
testcase_09 AC 37 ms
52,032 KB
testcase_10 AC 37 ms
52,960 KB
testcase_11 AC 38 ms
53,436 KB
testcase_12 AC 257 ms
85,548 KB
testcase_13 AC 241 ms
88,132 KB
testcase_14 AC 286 ms
88,924 KB
testcase_15 AC 143 ms
80,324 KB
testcase_16 AC 166 ms
82,772 KB
testcase_17 AC 162 ms
82,068 KB
testcase_18 AC 351 ms
96,080 KB
testcase_19 AC 265 ms
86,800 KB
testcase_20 AC 120 ms
78,704 KB
testcase_21 AC 301 ms
93,116 KB
testcase_22 AC 92 ms
76,856 KB
testcase_23 AC 166 ms
81,488 KB
testcase_24 AC 336 ms
93,364 KB
testcase_25 AC 137 ms
80,060 KB
testcase_26 AC 357 ms
94,084 KB
testcase_27 AC 166 ms
81,464 KB
testcase_28 AC 228 ms
84,952 KB
testcase_29 AC 193 ms
84,020 KB
testcase_30 AC 197 ms
88,456 KB
testcase_31 AC 175 ms
83,376 KB
testcase_32 AC 430 ms
107,132 KB
testcase_33 AC 415 ms
107,112 KB
testcase_34 AC 174 ms
107,248 KB
testcase_35 AC 457 ms
100,992 KB
testcase_36 AC 471 ms
98,816 KB
testcase_37 AC 423 ms
94,596 KB
testcase_38 AC 437 ms
95,988 KB
testcase_39 AC 457 ms
99,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, M = map(int, input().split())
A = list(map(int, input().split()))
G = [[] for _ in range(N)]

for _ in range(M):
    u, v = map(int, input().split())
    G[u-1].append(v-1)
    G[v-1].append(u-1)

K = int(input())
B = list(map(int, input().split()))
flag = [False]*N

for Bi in B:
    flag[Bi-1] = True

Ai = [(A[i], i) for i in range(N)]
Ai.sort()
ans = []

for _, v in Ai:
    if flag[v]:
        ans.append(v+1)
        
        for nv in G[v]:
            if A[v]<A[nv]:
                flag[nv] ^= True

print(len(ans))

for i in range(len(ans)):
    print(ans[i])
0