結果

問題 No.1477 Lamps on Graph
ユーザー brthyyjpbrthyyjp
提出日時 2021-08-30 20:19:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 386 ms / 2,000 ms
コード長 798 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 117,024 KB
最終ジャッジ日時 2024-11-24 03:11:11
合計ジャッジ時間 9,626 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,824 KB
testcase_01 AC 37 ms
53,196 KB
testcase_02 AC 36 ms
53,076 KB
testcase_03 AC 34 ms
52,472 KB
testcase_04 AC 35 ms
53,216 KB
testcase_05 AC 34 ms
52,808 KB
testcase_06 AC 34 ms
52,988 KB
testcase_07 AC 34 ms
53,192 KB
testcase_08 AC 36 ms
53,364 KB
testcase_09 AC 35 ms
53,048 KB
testcase_10 AC 35 ms
53,224 KB
testcase_11 AC 34 ms
53,932 KB
testcase_12 AC 221 ms
87,516 KB
testcase_13 AC 261 ms
91,772 KB
testcase_14 AC 248 ms
89,756 KB
testcase_15 AC 154 ms
81,400 KB
testcase_16 AC 138 ms
82,960 KB
testcase_17 AC 153 ms
83,116 KB
testcase_18 AC 251 ms
101,836 KB
testcase_19 AC 233 ms
89,868 KB
testcase_20 AC 167 ms
80,716 KB
testcase_21 AC 253 ms
100,056 KB
testcase_22 AC 130 ms
78,692 KB
testcase_23 AC 187 ms
82,552 KB
testcase_24 AC 334 ms
94,900 KB
testcase_25 AC 172 ms
81,744 KB
testcase_26 AC 279 ms
96,980 KB
testcase_27 AC 168 ms
82,740 KB
testcase_28 AC 189 ms
86,996 KB
testcase_29 AC 211 ms
84,656 KB
testcase_30 AC 181 ms
91,304 KB
testcase_31 AC 172 ms
85,344 KB
testcase_32 AC 381 ms
117,024 KB
testcase_33 AC 386 ms
113,564 KB
testcase_34 AC 208 ms
100,112 KB
testcase_35 AC 359 ms
106,196 KB
testcase_36 AC 330 ms
102,268 KB
testcase_37 AC 246 ms
99,216 KB
testcase_38 AC 301 ms
99,232 KB
testcase_39 AC 332 ms
102,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

n, m = map(int, input().split())
A = list(map(int, input().split()))
g = [[] for i in range(n)]
for i in range(m):
    u, v = map(int, input().split())
    u, v = u-1, v-1
    if A[u] < A[v]:
        g[u].append(v)
    elif A[u] > A[v]:
        g[v].append(u)
k = int(input())
B = list(map(int, input().split()))
B = [b-1 for b in B]
C = [0]*n
for b in B:
    C[b] = 1

q = []
import heapq
for b in B:
    q.append((A[b], b))
heapq.heapify(q)
ans = []
while q:
    a, v =heapq.heappop(q)
    if C[v] == 0:
        continue
    C[v] = 0
    ans.append(v+1)
    for u in g[v]:
        C[u] = 1-C[u]
        heapq.heappush(q, (A[u], u))
if sum(C) > 0:
    print(-1)
    exit()
print(len(ans))
print(*ans, sep='\n')
0