結果
問題 | No.1477 Lamps on Graph |
ユーザー | kuro_B |
提出日時 | 2023-05-15 23:08:21 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 352 ms / 2,000 ms |
コード長 | 2,320 bytes |
コンパイル時間 | 379 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 119,040 KB |
最終ジャッジ日時 | 2024-12-14 04:17:32 |
合計ジャッジ時間 | 12,052 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 150 ms
82,376 KB |
testcase_01 | AC | 142 ms
82,048 KB |
testcase_02 | AC | 143 ms
82,432 KB |
testcase_03 | AC | 144 ms
82,048 KB |
testcase_04 | AC | 145 ms
82,176 KB |
testcase_05 | AC | 147 ms
82,364 KB |
testcase_06 | AC | 142 ms
82,560 KB |
testcase_07 | AC | 146 ms
82,176 KB |
testcase_08 | AC | 143 ms
82,396 KB |
testcase_09 | AC | 145 ms
82,432 KB |
testcase_10 | AC | 143 ms
82,432 KB |
testcase_11 | AC | 140 ms
82,356 KB |
testcase_12 | AC | 281 ms
95,744 KB |
testcase_13 | AC | 268 ms
98,048 KB |
testcase_14 | AC | 306 ms
100,452 KB |
testcase_15 | AC | 252 ms
91,008 KB |
testcase_16 | AC | 219 ms
87,984 KB |
testcase_17 | AC | 222 ms
87,168 KB |
testcase_18 | AC | 256 ms
100,336 KB |
testcase_19 | AC | 265 ms
96,856 KB |
testcase_20 | AC | 232 ms
88,304 KB |
testcase_21 | AC | 251 ms
102,680 KB |
testcase_22 | AC | 202 ms
87,040 KB |
testcase_23 | AC | 257 ms
93,224 KB |
testcase_24 | AC | 323 ms
106,472 KB |
testcase_25 | AC | 229 ms
89,344 KB |
testcase_26 | AC | 306 ms
102,272 KB |
testcase_27 | AC | 260 ms
92,288 KB |
testcase_28 | AC | 273 ms
93,312 KB |
testcase_29 | AC | 260 ms
92,800 KB |
testcase_30 | AC | 203 ms
94,592 KB |
testcase_31 | AC | 219 ms
88,448 KB |
testcase_32 | AC | 286 ms
118,144 KB |
testcase_33 | AC | 278 ms
113,988 KB |
testcase_34 | AC | 264 ms
119,040 KB |
testcase_35 | AC | 352 ms
108,140 KB |
testcase_36 | AC | 342 ms
106,752 KB |
testcase_37 | AC | 329 ms
105,860 KB |
testcase_38 | AC | 341 ms
105,856 KB |
testcase_39 | AC | 349 ms
107,544 KB |
ソースコード
###スニペット始まり### import sys, re from copy import copy, deepcopy from math import ceil, floor, sqrt,factorial, gcd, pi, degrees, radians, sin, asin, cos, acos, tan, atan2 from statistics import mean, median from collections import Counter, deque, defaultdict from heapq import heapify, heappop, heappush from itertools import permutations, accumulate, product, combinations, combinations_with_replacement from bisect import bisect, bisect_left, bisect_right from functools import reduce, lru_cache from string import ascii_uppercase, ascii_lowercase from decimal import Decimal, ROUND_HALF_UP #四捨五入用 def input(): return sys.stdin.readline().rstrip('\n') #easy-testのpypyでは再帰数を下げる。 if __file__=='prog.py': sys.setrecursionlimit(10**5) else: sys.setrecursionlimit(10**6) def lcm(a, b): return a * b // gcd(a, b) #3つ以上の最大公約数/最小公倍数。Nを要素数、Mを数値の大きさとして、O(NlogM) def gcd_v2(l: list): return reduce(gcd, l) def lcm_v2(l: list): return reduce(lcm, l) #nPk def nPk(n, k): return factorial(n) // factorial(n - k) #逆元 def modinv(a, mod=10**9+7): return pow(a, mod-2, mod) INF = float('inf') MOD = 10 ** 9 + 7 ###スニペット終わり### N, M=map(int, input().split()) A=list(map(int, input().split())) es=[] for _ in range(M): a, b = map(int, input().split()) es.append([a,b]) K=int(input()) B=list(map(int, input().split())) lamps=[0]*N #0がoff、1がon for b in B: lamps[b-1]=1 graph = [[] for _ in range(N)] input_edge=[0]*N for i in range(M): a,b=es[i] if A[a-1]<A[b-1]: graph[a-1].append(b-1) input_edge[b-1]+=1 elif A[a-1]>A[b-1]: graph[b-1].append(a-1) input_edge[a-1]+=1 ans = [] que=deque([i for i in range(N) if input_edge[i] == 0]) while que: q = que.popleft() if not lamps[q]: for e in graph[q]: input_edge[e] -= 1 if input_edge[e] == 0: que.append(e) else: #切り替えする。 lamps[q]=0 #消す。 ans.append(q) for e in graph[q]: input_edge[e] -= 1 lamps[e]=0 if lamps[e]==1 else 1 if input_edge[e] == 0: que.append(e) print(len(ans)) for a in ans: print(a+1)