結果

問題 No.1477 Lamps on Graph
ユーザー trineutrontrineutron
提出日時 2021-04-16 20:14:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 858 ms / 2,000 ms
コード長 583 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 42,036 KB
最終ジャッジ日時 2024-07-02 22:10:35
合計ジャッジ時間 16,858 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 32 ms
10,624 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 30 ms
10,880 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 526 ms
25,948 KB
testcase_13 AC 464 ms
26,192 KB
testcase_14 AC 628 ms
28,184 KB
testcase_15 AC 314 ms
17,408 KB
testcase_16 AC 168 ms
20,064 KB
testcase_17 AC 162 ms
19,508 KB
testcase_18 AC 443 ms
35,920 KB
testcase_19 AC 394 ms
27,512 KB
testcase_20 AC 193 ms
15,488 KB
testcase_21 AC 371 ms
31,904 KB
testcase_22 AC 164 ms
12,928 KB
testcase_23 AC 406 ms
18,552 KB
testcase_24 AC 676 ms
32,764 KB
testcase_25 AC 266 ms
16,768 KB
testcase_26 AC 588 ms
34,624 KB
testcase_27 AC 342 ms
19,304 KB
testcase_28 AC 386 ms
24,488 KB
testcase_29 AC 367 ms
21,260 KB
testcase_30 AC 212 ms
23,736 KB
testcase_31 AC 175 ms
20,608 KB
testcase_32 AC 801 ms
41,020 KB
testcase_33 AC 733 ms
41,312 KB
testcase_34 AC 612 ms
37,560 KB
testcase_35 AC 858 ms
42,036 KB
testcase_36 AC 838 ms
41,364 KB
testcase_37 AC 754 ms
39,636 KB
testcase_38 AC 783 ms
40,208 KB
testcase_39 AC 819 ms
41,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
a = list(map(int, input().split()))
to = [[] for _ in range(n)]
for i in range(m):
    u, v = map(int, input().split())
    u -= 1
    v -= 1
    if a[u] < a[v]:
        to[u].append(v)
    if a[v] < a[u]:
        to[v].append(u)
k = int(input())
on = [False] * n
b = list(map(int, input().split()))
for i in b:
    on[i - 1] = True
a_sorted = sorted([(a[i], i) for i in range(n)])
ans = []
for _, i in a_sorted:
    if on[i]:
        ans.append(i)
        for j in to[i]:
            on[j] = not on[j]
print(len(ans))
for x in ans:
    print(x + 1)
0