結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,888 KB
testcase_01 AC 38 ms
55,848 KB
testcase_02 AC 39 ms
55,344 KB
testcase_03 AC 39 ms
55,684 KB
testcase_04 AC 40 ms
55,752 KB
testcase_05 AC 41 ms
55,356 KB
testcase_06 AC 39 ms
56,696 KB
testcase_07 AC 38 ms
55,292 KB
testcase_08 AC 39 ms
56,728 KB
testcase_09 AC 39 ms
56,372 KB
testcase_10 AC 39 ms
55,776 KB
testcase_11 AC 39 ms
55,284 KB
testcase_12 AC 159 ms
84,020 KB
testcase_13 AC 155 ms
87,692 KB
testcase_14 AC 211 ms
86,612 KB
testcase_15 AC 127 ms
79,860 KB
testcase_16 AC 119 ms
81,980 KB
testcase_17 AC 115 ms
81,380 KB
testcase_18 AC 156 ms
98,784 KB
testcase_19 AC 154 ms
87,124 KB
testcase_20 AC 107 ms
79,392 KB
testcase_21 AC 142 ms
97,860 KB
testcase_22 AC 105 ms
78,144 KB
testcase_23 AC 149 ms
81,092 KB
testcase_24 AC 214 ms
94,912 KB
testcase_25 AC 124 ms
79,456 KB
testcase_26 AC 190 ms
93,120 KB
testcase_27 AC 142 ms
81,036 KB
testcase_28 AC 155 ms
84,656 KB
testcase_29 AC 143 ms
82,604 KB
testcase_30 AC 103 ms
87,824 KB
testcase_31 AC 111 ms
82,620 KB
testcase_32 AC 184 ms
113,888 KB
testcase_33 AC 177 ms
107,972 KB
testcase_34 AC 150 ms
100,592 KB
testcase_35 AC 250 ms
102,756 KB
testcase_36 AC 231 ms
100,072 KB
testcase_37 AC 213 ms
94,608 KB
testcase_38 AC 220 ms
93,896 KB
testcase_39 AC 252 ms
100,124 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([])
seen = [0]*n
res = []
for i,x in enumerate(ny):
    if x == 0:
        q.append(i)
        seen[i] = 1
while q:
    u = q.popleft()
    if b[u]: 
        res.append(u+1)
    for v in g[u]:
        if seen[v]: continue
        b[v] ^= b[u]
        ny[v] -= 1
        if ny[v] == 0:
            q.append(v)
            seen[v] = 1
print(len(res))
for x in res:
    print(x)
0