結果

問題 No.1190 Points
ユーザー ayaoniayaoni
提出日時 2020-12-11 12:29:26
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 2,322 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 286,092 KB
最終ジャッジ日時 2024-09-19 21:15:38
合計ジャッジ時間 33,333 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
56,388 KB
testcase_01 AC 42 ms
54,792 KB
testcase_02 AC 41 ms
55,056 KB
testcase_03 AC 1,010 ms
193,296 KB
testcase_04 AC 880 ms
181,416 KB
testcase_05 AC 839 ms
175,836 KB
testcase_06 AC 1,226 ms
244,848 KB
testcase_07 AC 1,285 ms
246,740 KB
testcase_08 AC 1,675 ms
281,956 KB
testcase_09 AC 1,798 ms
274,924 KB
testcase_10 AC 1,694 ms
286,092 KB
testcase_11 AC 1,276 ms
202,812 KB
testcase_12 AC 1,735 ms
276,392 KB
testcase_13 AC 1,310 ms
187,656 KB
testcase_14 AC 264 ms
161,240 KB
testcase_15 TLE -
testcase_16 AC 313 ms
104,204 KB
testcase_17 AC 1,794 ms
259,308 KB
testcase_18 AC 946 ms
141,420 KB
testcase_19 AC 282 ms
166,872 KB
testcase_20 AC 1,244 ms
166,104 KB
testcase_21 AC 512 ms
144,964 KB
testcase_22 AC 378 ms
189,168 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 1,314 ms
255,060 KB
testcase_26 AC 614 ms
222,392 KB
testcase_27 AC 1,358 ms
261,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,collections,heapq

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())


class Dijkstra:
    def __init__(self):
        self.e = collections.defaultdict(list)

    def add(self, u, v, d, directed=False):
        if directed is False:  # 無向グラフの場合
            self.e[u].append([v, d])
            self.e[v].append([u, d])
        else:  # 有向グラフの場合
            self.e[u].append([v, d])

    def delete(self, u, v):
        self.e[u] = [_ for _ in self.e[u] if _[0] != v]
        self.e[v] = [_ for _ in self.e[v] if _[0] != u]

    def search(self, s):  # sから各頂点までの最短距離
        d = collections.defaultdict(lambda: float('inf'))
        d[s] = 0
        q = []
        heapq.heappush(q, (0, s))
        v = collections.defaultdict(bool)
        while len(q):
            k, u = heapq.heappop(q)
            if v[u]:
                continue
            v[u] = True

            for uv, ud in self.e[u]:
                if v[uv]:
                    continue
                vd = k + ud
                if d[uv] > vd:
                    d[uv] = vd
                    heapq.heappush(q, (vd, uv))
        return d


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

Di = Dijkstra()

for _ in range(M):
    u,v = MI()
    Di.add((u,0),(v,1),1,directed=False)
    Di.add((u,1),(v,0),1,directed=False)

dist_S = Di.search((S,0))
dist_G = Di.search((G,0))

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 != float('inf') and d0 <= P) or (d1 != float('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 != float('inf') and d0 <= P) or (d1 != float('inf') and d1 <= P):
            ANS.append(i)

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

# bfsの方が速く解ける
0