結果

問題 No.1477 Lamps on Graph
ユーザー terry_u16terry_u16
提出日時 2021-04-16 20:47:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 448 ms / 2,000 ms
コード長 715 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 114,540 KB
最終ジャッジ日時 2024-07-02 23:22:02
合計ジャッジ時間 10,523 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,872 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 35 ms
52,224 KB
testcase_04 AC 36 ms
51,968 KB
testcase_05 AC 34 ms
52,096 KB
testcase_06 AC 33 ms
52,224 KB
testcase_07 AC 33 ms
51,968 KB
testcase_08 AC 32 ms
52,608 KB
testcase_09 AC 35 ms
52,096 KB
testcase_10 AC 36 ms
52,352 KB
testcase_11 AC 39 ms
52,072 KB
testcase_12 AC 266 ms
88,016 KB
testcase_13 AC 259 ms
92,632 KB
testcase_14 AC 289 ms
91,108 KB
testcase_15 AC 160 ms
80,516 KB
testcase_16 AC 168 ms
82,008 KB
testcase_17 AC 167 ms
81,896 KB
testcase_18 AC 336 ms
94,164 KB
testcase_19 AC 264 ms
90,776 KB
testcase_20 AC 128 ms
79,456 KB
testcase_21 AC 293 ms
96,368 KB
testcase_22 AC 112 ms
77,872 KB
testcase_23 AC 196 ms
82,304 KB
testcase_24 AC 348 ms
100,360 KB
testcase_25 AC 159 ms
80,608 KB
testcase_26 AC 346 ms
99,180 KB
testcase_27 AC 181 ms
82,648 KB
testcase_28 AC 236 ms
87,016 KB
testcase_29 AC 207 ms
83,804 KB
testcase_30 AC 190 ms
88,696 KB
testcase_31 AC 178 ms
83,004 KB
testcase_32 AC 428 ms
114,540 KB
testcase_33 AC 411 ms
113,808 KB
testcase_34 AC 196 ms
114,200 KB
testcase_35 AC 435 ms
106,984 KB
testcase_36 AC 448 ms
105,144 KB
testcase_37 AC 413 ms
98,380 KB
testcase_38 AC 426 ms
100,544 KB
testcase_39 AC 442 ms
104,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(n, m) = map(int, input().split())
a = list(map(int, input().split()))
graph = [[] for _ in range(n)]

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

_ = input()
b = list(map(int, input().split()))
on = [False] * n

for bi in b:
    on[bi - 1] = True

indice = [(ai, index) for ai, index in zip(a, range(n))]
indice.sort()

results = []

for (ai, index) in indice:
    if on[index]:
        on[index] = False
        results.append(index + 1)
        for v in graph[index]:
            if a[index] < a[v]:
                on[v] ^= True

if any(on):
    print(-1)
else:
    print(len(results))
    for res in results:
        print(res)
0