結果

問題 No.1477 Lamps on Graph
ユーザー tamatotamato
提出日時 2021-04-16 20:10:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 284 ms / 2,000 ms
コード長 798 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 122,216 KB
最終ジャッジ日時 2024-07-02 22:02:45
合計ジャッジ時間 7,921 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 45 ms
51,968 KB
testcase_02 AC 36 ms
52,352 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 35 ms
52,352 KB
testcase_05 AC 38 ms
51,840 KB
testcase_06 AC 37 ms
52,096 KB
testcase_07 AC 38 ms
51,712 KB
testcase_08 AC 39 ms
52,324 KB
testcase_09 AC 38 ms
51,968 KB
testcase_10 AC 36 ms
52,096 KB
testcase_11 AC 36 ms
51,712 KB
testcase_12 AC 176 ms
87,376 KB
testcase_13 AC 165 ms
91,128 KB
testcase_14 AC 182 ms
91,504 KB
testcase_15 AC 101 ms
78,540 KB
testcase_16 AC 119 ms
82,176 KB
testcase_17 AC 109 ms
82,428 KB
testcase_18 AC 228 ms
102,620 KB
testcase_19 AC 165 ms
90,192 KB
testcase_20 AC 104 ms
78,684 KB
testcase_21 AC 190 ms
103,564 KB
testcase_22 AC 82 ms
77,760 KB
testcase_23 AC 127 ms
81,280 KB
testcase_24 AC 212 ms
102,848 KB
testcase_25 AC 101 ms
78,380 KB
testcase_26 AC 245 ms
98,072 KB
testcase_27 AC 120 ms
82,660 KB
testcase_28 AC 155 ms
86,604 KB
testcase_29 AC 132 ms
84,156 KB
testcase_30 AC 138 ms
91,736 KB
testcase_31 AC 121 ms
83,928 KB
testcase_32 AC 284 ms
122,216 KB
testcase_33 AC 257 ms
118,592 KB
testcase_34 AC 159 ms
113,864 KB
testcase_35 AC 274 ms
107,344 KB
testcase_36 AC 268 ms
104,880 KB
testcase_37 AC 244 ms
100,172 KB
testcase_38 AC 262 ms
100,928 KB
testcase_39 AC 272 ms
105,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
eps = 10**-9


def main():
    import sys
    input = sys.stdin.buffer.readline

    N, M = map(int, input().split())
    A = list(map(int, input().split()))
    adj = [[] for _ in range(N+1)]
    for _ in range(M):
        a, b = map(int, input().split())
        adj[a].append(b)
        adj[b].append(a)
    K = int(input())
    B = list(map(int, input().split()))

    AI = [(a, i+1) for i, a in enumerate(A)]
    AI.sort(key=lambda x: x[0])
    on = [0] * (N+1)
    for b in B:
        on[b] = 1
    ans = []
    for a, i in AI:
        if on[i]:
            ans.append(i)
            on[i] = 0
            for j in adj[i]:
                if A[i-1] < A[j-1]:
                    on[j] ^= 1
    print(len(ans))
    print(*ans, sep="\n")


if __name__ == '__main__':
    main()
0