結果
問題 | No.1190 Points |
ユーザー | buey_t |
提出日時 | 2023-04-23 11:55:08 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,119 bytes |
コンパイル時間 | 386 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 105,984 KB |
最終ジャッジ日時 | 2024-11-07 19:34:13 |
合計ジャッジ時間 | 9,629 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 141 ms
85,120 KB |
testcase_01 | AC | 141 ms
84,992 KB |
testcase_02 | AC | 141 ms
85,376 KB |
testcase_03 | AC | 324 ms
101,248 KB |
testcase_04 | AC | 297 ms
97,920 KB |
testcase_05 | AC | 286 ms
99,968 KB |
testcase_06 | AC | 347 ms
101,376 KB |
testcase_07 | AC | 354 ms
105,984 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 175 ms
91,392 KB |
testcase_15 | WA | - |
testcase_16 | AC | 182 ms
90,496 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 175 ms
91,648 KB |
testcase_20 | WA | - |
testcase_21 | AC | 209 ms
95,104 KB |
testcase_22 | AC | 207 ms
97,664 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 301 ms
100,864 KB |
testcase_26 | AC | 257 ms
100,352 KB |
testcase_27 | AC | 303 ms
100,992 KB |
ソースコード
from math import sqrt,sin,cos,tan,ceil,radians,floor,gcd,exp,log,log10,log2,factorial,fsumfrom heapq import heapify, heappop, heappushfrom bisect import bisect_left, bisect_rightfrom copy import deepcopyimport copyimport randomfrom collections import deque,Counter,defaultdictfrom itertools import permutations,combinationsfrom decimal import Decimal,ROUND_HALF_UP#tmp = Decimal(mid).quantize(Decimal('0'), rounding=ROUND_HALF_UP)from functools import lru_cache, reduce#@lru_cache(maxsize=None)from operator import add,sub,mul,xor,and_,or_,itemgetterimport sysinput = sys.stdin.readline# .rstrip()INF = 10**18mod1 = 10**9+7mod2 = 998244353#DecimalならPython#再帰ならPython!!!!!!!!!!!!!!!!!!!!!!!!!!'''dfsじゃないといけないかも頂点Gまでの経路まあ普通にP回まで探索すればいいけどそれまでに通った辺をどうやって管理するか重複していいならリストでいいのか逆に、P回移動したときにたどりつく頂点を列挙してそこからbfsするとかちょっと厳しいか?なるほど前後からかちょっと答え見るの早いかもなまあ今回はしょうがないとして'''N,M,P = map(int, input().split())S,Go = map(int, input().split())G = [[] for _ in range(N+1)]for _ in range(M):u,v = map(int, input().split())G[u].append(v)G[v].append(u)Q = deque()Q.append((S,0))seen = [INF]*(N+1)while len(Q) > 0:pos,cnt = Q.popleft()seen[pos] = cntfor nx in G[pos]:if seen[nx] == INF:Q.append((nx,cnt+1))seen[nx] = cnt+1Q = deque()Q.append((Go,0))seen2 = [INF]*(N+1)while len(Q) > 0:pos,cnt = Q.popleft()seen2[pos] = cntfor nx in G[pos]:if seen2[nx] == INF:Q.append((nx,cnt+1))seen2[nx] = cnt+1ans = []for i in range(1,N+1):if seen[i]+seen2[i] > P:continueif (seen[i]+seen2[i])%2 == P%2:ans.append(i)ans.sort()if len(ans) == 0:print(-1)exit()print(len(ans))for a in ans:print(a)