結果

問題 No.1477 Lamps on Graph
ユーザー eijiroueijirou
提出日時 2021-04-16 21:12:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 307 ms / 2,000 ms
コード長 740 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 108,480 KB
最終ジャッジ日時 2024-07-03 00:19:00
合計ジャッジ時間 8,560 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,440 KB
testcase_01 AC 39 ms
51,992 KB
testcase_02 AC 39 ms
52,544 KB
testcase_03 AC 38 ms
52,232 KB
testcase_04 AC 38 ms
52,148 KB
testcase_05 AC 39 ms
52,484 KB
testcase_06 AC 39 ms
52,600 KB
testcase_07 AC 38 ms
52,848 KB
testcase_08 AC 39 ms
53,212 KB
testcase_09 AC 40 ms
52,692 KB
testcase_10 AC 38 ms
52,432 KB
testcase_11 AC 38 ms
53,812 KB
testcase_12 AC 185 ms
83,824 KB
testcase_13 AC 182 ms
86,896 KB
testcase_14 AC 205 ms
85,808 KB
testcase_15 AC 122 ms
79,096 KB
testcase_16 AC 124 ms
81,200 KB
testcase_17 AC 122 ms
81,164 KB
testcase_18 AC 222 ms
91,284 KB
testcase_19 AC 183 ms
86,128 KB
testcase_20 AC 104 ms
77,244 KB
testcase_21 AC 200 ms
94,444 KB
testcase_22 AC 90 ms
76,848 KB
testcase_23 AC 129 ms
79,084 KB
testcase_24 AC 229 ms
89,048 KB
testcase_25 AC 117 ms
78,648 KB
testcase_26 AC 231 ms
93,292 KB
testcase_27 AC 137 ms
80,468 KB
testcase_28 AC 164 ms
83,480 KB
testcase_29 AC 147 ms
81,340 KB
testcase_30 AC 138 ms
87,928 KB
testcase_31 AC 126 ms
82,076 KB
testcase_32 AC 283 ms
108,480 KB
testcase_33 AC 268 ms
104,004 KB
testcase_34 AC 143 ms
98,168 KB
testcase_35 AC 307 ms
94,984 KB
testcase_36 AC 301 ms
97,568 KB
testcase_37 AC 281 ms
93,228 KB
testcase_38 AC 284 ms
93,384 KB
testcase_39 AC 300 ms
97,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
input = stdin.readline

def main():
    n, m = map(int, input().split())
    a = list(map(int, input().split()))

    edges = [[] for _ in range(n)]
    for _ in range(m):
        u, v = map(int, input().split())
        if a[u-1] < a[v-1]:
            edges[u-1].append(v-1)
        elif a[u-1] > a[v-1]:
            edges[v-1].append(u-1)
    
    k = int(input())
    switch = [0] * n
    for b in map(int, input().split()):
        switch[b-1] = 1
    
    ans = []
    for u in sorted(range(n), key=lambda x: a[x]):
        if switch[u]:
            #switch[u] = 0
            ans.append(u+1)
            for v in edges[u]:
                switch[v] ^= 1
    
    print(len(ans))
    print(*ans, sep='\n')

main()
0