結果

問題 No.1477 Lamps on Graph
ユーザー 8nd5t8nd5t
提出日時 2021-04-16 20:48:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 285 ms / 2,000 ms
コード長 1,063 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 112,888 KB
最終ジャッジ日時 2024-07-02 23:25:44
合計ジャッジ時間 8,946 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,784 KB
testcase_01 AC 44 ms
54,272 KB
testcase_02 AC 50 ms
54,400 KB
testcase_03 AC 45 ms
54,656 KB
testcase_04 AC 45 ms
54,400 KB
testcase_05 AC 43 ms
54,784 KB
testcase_06 AC 47 ms
54,656 KB
testcase_07 AC 45 ms
54,528 KB
testcase_08 AC 45 ms
55,168 KB
testcase_09 AC 44 ms
54,784 KB
testcase_10 AC 45 ms
54,912 KB
testcase_11 AC 45 ms
55,040 KB
testcase_12 AC 196 ms
84,696 KB
testcase_13 AC 189 ms
87,700 KB
testcase_14 AC 228 ms
86,172 KB
testcase_15 AC 153 ms
80,128 KB
testcase_16 AC 128 ms
82,568 KB
testcase_17 AC 124 ms
81,912 KB
testcase_18 AC 173 ms
98,012 KB
testcase_19 AC 173 ms
87,260 KB
testcase_20 AC 128 ms
79,512 KB
testcase_21 AC 158 ms
96,736 KB
testcase_22 AC 113 ms
78,624 KB
testcase_23 AC 169 ms
80,512 KB
testcase_24 AC 238 ms
94,364 KB
testcase_25 AC 141 ms
80,084 KB
testcase_26 AC 214 ms
92,088 KB
testcase_27 AC 160 ms
80,900 KB
testcase_28 AC 172 ms
84,844 KB
testcase_29 AC 162 ms
81,912 KB
testcase_30 AC 117 ms
86,756 KB
testcase_31 AC 124 ms
82,816 KB
testcase_32 AC 212 ms
112,888 KB
testcase_33 AC 205 ms
107,252 KB
testcase_34 AC 170 ms
99,592 KB
testcase_35 AC 285 ms
102,848 KB
testcase_36 AC 281 ms
98,980 KB
testcase_37 AC 266 ms
94,048 KB
testcase_38 AC 272 ms
94,492 KB
testcase_39 AC 278 ms
98,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,math,itertools
from collections import Counter,deque,defaultdict
from bisect import bisect_left,bisect_right 
from heapq import heappop,heappush,heapify
mod = 10**9+7
INF = float('inf')
def inp(): return int(sys.stdin.readline())
def inpl(): return list(map(int, sys.stdin.readline().split()))
def inpl_1(): return list(map(lambda x:int(x)-1, sys.stdin.readline().split()))
def inps(): return sys.stdin.readline()
def inpsl(x): tmp = sys.stdin.readline(); return list(tmp[:x])
def err(x): print(x); exit()

n,m = inpl()
a = inpl()
g = [[] for _ in range(n)]
ny = [0]*n
for _ in range(m):
    u,v = inpl_1()
    if a[u] == a[v]: continue
    if a[u] > a[v]: u,v = v,u
    g[u].append(v)
    ny[v] += 1
k = inp()
b = [0]*n
for x in inpl():
    b[x-1] = 1
q = deque([])
res = []
for i,x in enumerate(ny):
    if x == 0:
        q.append(i)
while q:
    u = q.popleft()
    if b[u]: 
        res.append(u+1)
    for v in g[u]:
        b[v] ^= b[u]
        ny[v] -= 1
        if ny[v] == 0:
            q.append(v)
print(len(res))
for x in res:
    print(x)
0