結果

問題 No.1477 Lamps on Graph
ユーザー convexineqconvexineq
提出日時 2021-04-16 20:14:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 372 ms / 2,000 ms
コード長 564 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 102,916 KB
最終ジャッジ日時 2024-07-02 22:10:17
合計ジャッジ時間 9,865 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,464 KB
testcase_01 AC 38 ms
53,568 KB
testcase_02 AC 39 ms
51,880 KB
testcase_03 AC 40 ms
52,064 KB
testcase_04 AC 39 ms
53,136 KB
testcase_05 AC 39 ms
53,260 KB
testcase_06 AC 38 ms
53,188 KB
testcase_07 AC 38 ms
52,572 KB
testcase_08 AC 39 ms
51,944 KB
testcase_09 AC 39 ms
52,184 KB
testcase_10 AC 39 ms
53,260 KB
testcase_11 AC 38 ms
52,236 KB
testcase_12 AC 223 ms
85,548 KB
testcase_13 AC 217 ms
87,972 KB
testcase_14 AC 253 ms
87,060 KB
testcase_15 AC 156 ms
79,908 KB
testcase_16 AC 144 ms
82,908 KB
testcase_17 AC 140 ms
82,336 KB
testcase_18 AC 249 ms
95,228 KB
testcase_19 AC 219 ms
87,956 KB
testcase_20 AC 130 ms
78,304 KB
testcase_21 AC 229 ms
91,632 KB
testcase_22 AC 114 ms
77,600 KB
testcase_23 AC 173 ms
79,664 KB
testcase_24 AC 287 ms
94,724 KB
testcase_25 AC 148 ms
79,376 KB
testcase_26 AC 275 ms
93,988 KB
testcase_27 AC 177 ms
80,888 KB
testcase_28 AC 206 ms
85,248 KB
testcase_29 AC 182 ms
83,452 KB
testcase_30 AC 164 ms
87,648 KB
testcase_31 AC 151 ms
83,612 KB
testcase_32 AC 311 ms
100,504 KB
testcase_33 AC 305 ms
102,168 KB
testcase_34 AC 192 ms
102,916 KB
testcase_35 AC 372 ms
96,144 KB
testcase_36 AC 358 ms
96,416 KB
testcase_37 AC 336 ms
95,828 KB
testcase_38 AC 339 ms
96,412 KB
testcase_39 AC 355 ms
95,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
*a, = map(int,input().split())
g = [[] for _ in range(n)]
for _ in range(m):
    u,v = map(int,input().split())
    u -= 1
    v -= 1
    if a[u] < a[v]:
        g[u].append(v)
    if a[v] < a[u]:
        g[v].append(u)
res = [0]*n
_ = input()
for i in map(int,input().split()):
    res[i-1] = 1
ans = []
for v in sorted(range(n), key=lambda i:a[i]):
    if res[v]:
        res[v] = 0
        ans.append(v+1)
        for c in g[v]:
            res[c] ^= 1
if sum(res):
    print(-1)
else:
    print(len(ans))
    print(*ans,sep="\n")
0