結果

問題 No.1190 Points
ユーザー H20H20
提出日時 2022-02-09 22:46:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,585 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 259,988 KB
最終ジャッジ日時 2024-06-25 03:06:26
合計ジャッジ時間 24,064 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,272 KB
testcase_01 AC 42 ms
54,528 KB
testcase_02 AC 42 ms
54,912 KB
testcase_03 AC 773 ms
164,900 KB
testcase_04 AC 685 ms
154,744 KB
testcase_05 AC 634 ms
139,984 KB
testcase_06 AC 920 ms
206,220 KB
testcase_07 AC 977 ms
201,492 KB
testcase_08 WA -
testcase_09 AC 1,203 ms
241,824 KB
testcase_10 AC 1,213 ms
259,988 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 927 ms
158,180 KB
testcase_14 AC 146 ms
93,568 KB
testcase_15 AC 1,383 ms
225,876 KB
testcase_16 AC 233 ms
91,652 KB
testcase_17 AC 1,261 ms
218,116 KB
testcase_18 AC 683 ms
127,204 KB
testcase_19 AC 132 ms
94,336 KB
testcase_20 AC 870 ms
147,792 KB
testcase_21 AC 365 ms
111,612 KB
testcase_22 AC 211 ms
105,896 KB
testcase_23 AC 1,411 ms
231,736 KB
testcase_24 AC 1,431 ms
234,852 KB
testcase_25 AC 886 ms
175,384 KB
testcase_26 AC 375 ms
137,176 KB
testcase_27 AC 877 ms
176,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
import heapq


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

    def add(self, u, v, d):
        self.e[u].append([v, d])
        self.e[v].append([u, 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):
        """
        :param s: 始点
        :return: 始点から各点までの最短経路
        """
        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 = map(int, input().split())
S,G = map(int, input().split())
D = Dijkstra()
for _ in range(M):
    a,b = map(int, input().split())
    D.add(a,-b,1)
    D.add(-a,b,1)
SD = D.search(S)
if P%2==1:
    G=-G
GD = D.search(G)
dis = SD[G]
if dis==float('inf'):
    print(-1)
    exit()
amari = (P-dis)//2
ANS = []
for i in range(1,N+1):
    if SD[i]+GD[i]<=P or SD[i]+GD[-i]<=P or SD[-i]+GD[i]<=P or SD[-i]+GD[-i]<=P or  SD[i]<=amari or SD[-i]<=amari or GD[i]<=amari or GD[-i]<=amari:
        ANS.append(i)
print(len(ANS))
for ans in ANS:
    print(ans)
0