結果

問題 No.1190 Points
ユーザー ayaoniayaoni
提出日時 2020-12-11 12:43:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 730 ms / 2,000 ms
コード長 1,740 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 145,280 KB
最終ジャッジ日時 2024-09-19 21:16:20
合計ジャッジ時間 12,217 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,680 KB
testcase_01 AC 42 ms
54,272 KB
testcase_02 AC 38 ms
54,656 KB
testcase_03 AC 417 ms
120,064 KB
testcase_04 AC 358 ms
114,164 KB
testcase_05 AC 341 ms
116,096 KB
testcase_06 AC 466 ms
129,280 KB
testcase_07 AC 530 ms
139,052 KB
testcase_08 AC 485 ms
145,280 KB
testcase_09 AC 512 ms
137,472 KB
testcase_10 AC 508 ms
144,996 KB
testcase_11 AC 384 ms
120,832 KB
testcase_12 AC 515 ms
140,160 KB
testcase_13 AC 420 ms
112,896 KB
testcase_14 AC 155 ms
100,992 KB
testcase_15 AC 671 ms
139,264 KB
testcase_16 AC 118 ms
85,376 KB
testcase_17 AC 606 ms
136,156 KB
testcase_18 AC 276 ms
100,864 KB
testcase_19 AC 171 ms
112,512 KB
testcase_20 AC 385 ms
109,312 KB
testcase_21 AC 195 ms
101,632 KB
testcase_22 AC 212 ms
119,040 KB
testcase_23 AC 730 ms
143,104 KB
testcase_24 AC 680 ms
143,060 KB
testcase_25 AC 505 ms
131,328 KB
testcase_26 AC 320 ms
131,584 KB
testcase_27 AC 501 ms
131,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,collections,heapq
from collections import deque
sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N,M,P = MI()
S,G = MI()

Graph = [[[] for _ in range(2)] for _ in range(N+1)]
for _ in range(M):
    u,v = MI()
    Graph[u][0].append((v,1))
    Graph[v][0].append((u,1))
    Graph[u][1].append((v,0))
    Graph[v][1].append((u,0))

inf = 10**18
dist_S = [[inf]*2 for _ in range(N+1)]
dist_G = [[inf]*2 for _ in range(N+1)]
dist_S[S][0] = 0
dist_G[G][0] = 0
deq_S = deque([(S,0)])
deq_G = deque([(G,0)])
while deq_S:
    u,r = deq_S.pop()
    for v,s in Graph[u][r]:
        if dist_S[v][s] == inf:
            dist_S[v][s] = dist_S[u][r]+1
            deq_S.appendleft((v,s))
while deq_G:
    u,r = deq_G.pop()
    for v,s in Graph[u][r]:
        if dist_G[v][s] == inf:
            dist_G[v][s] = dist_G[u][r]+1
            deq_G.appendleft((v,s))

ANS = []
for i in range(1,N+1):
    if P % 2 == 0:
        d0 = dist_S[i][0]+dist_G[i][0]
        d1 = dist_S[i][1]+dist_G[i][1]
        if (d0 != inf and d0 <= P) or (d1 != inf and d1 <= P):
            ANS.append(i)
    else:
        d0 = dist_S[i][0]+dist_G[i][1]
        d1 = dist_S[i][1]+dist_G[i][0]
        if (d0 != inf and d0 <= P) or (d1 != inf and d1 <= P):
            ANS.append(i)

if ANS:
    print(len(ANS))
    print(*ANS,sep='\n')
else:
    print(-1)

# DijkstraだとTLE
0