結果

問題 No.1477 Lamps on Graph
ユーザー KudeKude
提出日時 2021-04-16 20:10:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 423 ms / 2,000 ms
コード長 591 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 103,436 KB
最終ジャッジ日時 2024-07-02 22:03:20
合計ジャッジ時間 10,479 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
51,712 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 44 ms
52,352 KB
testcase_03 AC 43 ms
52,096 KB
testcase_04 AC 42 ms
51,712 KB
testcase_05 AC 42 ms
52,096 KB
testcase_06 AC 41 ms
52,352 KB
testcase_07 AC 41 ms
52,096 KB
testcase_08 AC 42 ms
52,224 KB
testcase_09 AC 41 ms
52,096 KB
testcase_10 AC 41 ms
52,480 KB
testcase_11 AC 41 ms
51,968 KB
testcase_12 AC 258 ms
85,964 KB
testcase_13 AC 247 ms
89,300 KB
testcase_14 AC 284 ms
90,072 KB
testcase_15 AC 175 ms
80,640 KB
testcase_16 AC 165 ms
81,792 KB
testcase_17 AC 164 ms
81,664 KB
testcase_18 AC 279 ms
95,004 KB
testcase_19 AC 239 ms
86,924 KB
testcase_20 AC 150 ms
78,976 KB
testcase_21 AC 270 ms
94,452 KB
testcase_22 AC 131 ms
77,780 KB
testcase_23 AC 211 ms
82,176 KB
testcase_24 AC 332 ms
97,248 KB
testcase_25 AC 162 ms
80,084 KB
testcase_26 AC 311 ms
96,032 KB
testcase_27 AC 194 ms
83,012 KB
testcase_28 AC 246 ms
86,836 KB
testcase_29 AC 220 ms
84,044 KB
testcase_30 AC 173 ms
88,168 KB
testcase_31 AC 171 ms
82,816 KB
testcase_32 AC 357 ms
103,296 KB
testcase_33 AC 336 ms
102,724 KB
testcase_34 AC 225 ms
103,436 KB
testcase_35 AC 410 ms
97,636 KB
testcase_36 AC 423 ms
96,852 KB
testcase_37 AC 387 ms
94,568 KB
testcase_38 AC 390 ms
94,540 KB
testcase_39 AC 410 ms
96,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
a = list(map(int, input().split()))
to = [[] for _ in range(n)]
for _ in range(m):
    u, v = map(int, input().split())
    u -= 1
    v -= 1
    to[u].append(v)
    to[v].append(u)
s = [False] * n
k = int(input())
for bi in map(int, input().split()):
    bi -= 1
    s[bi] = True

ans = []
for u in sorted(range(n), key=lambda i: a[i]):
    if s[u]:
        s[u] = False
        ans.append(u + 1)
        for v in to[u]:
            if a[u] < a[v]:
                s[v] = not s[v]
if any(s):
    print(-1)
else:
    print(len(ans))
    print(*ans, sep='\n')
0