結果

問題 No.2354 Poor Sight in Winter
ユーザー Nikkuniku029Nikkuniku029
提出日時 2023-06-19 19:27:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,378 ms / 2,000 ms
コード長 1,470 bytes
コンパイル時間 508 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 231,552 KB
最終ジャッジ日時 2024-06-27 07:46:57
合計ジャッジ時間 12,959 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,120 KB
testcase_01 AC 40 ms
52,864 KB
testcase_02 AC 44 ms
53,376 KB
testcase_03 AC 42 ms
53,120 KB
testcase_04 AC 39 ms
52,736 KB
testcase_05 AC 39 ms
52,736 KB
testcase_06 AC 39 ms
52,864 KB
testcase_07 AC 38 ms
52,864 KB
testcase_08 AC 39 ms
52,992 KB
testcase_09 AC 54 ms
62,720 KB
testcase_10 AC 53 ms
63,744 KB
testcase_11 AC 666 ms
220,288 KB
testcase_12 AC 650 ms
231,552 KB
testcase_13 AC 1,378 ms
227,896 KB
testcase_14 AC 1,261 ms
229,772 KB
testcase_15 AC 960 ms
221,668 KB
testcase_16 AC 1,160 ms
217,300 KB
testcase_17 AC 1,173 ms
226,144 KB
testcase_18 AC 428 ms
101,924 KB
testcase_19 AC 822 ms
161,212 KB
testcase_20 AC 483 ms
109,816 KB
testcase_21 AC 161 ms
78,312 KB
testcase_22 AC 303 ms
86,968 KB
testcase_23 AC 294 ms
87,132 KB
testcase_24 AC 664 ms
140,800 KB
testcase_25 AC 228 ms
82,392 KB
testcase_26 AC 222 ms
81,312 KB
testcase_27 AC 115 ms
76,800 KB
testcase_28 AC 149 ms
78,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop


def dijkstra(s, n, adj):  # (始点, ノード数)
    INF = 10 ** 9
    dist = [INF] * n
    hq = [(0, s)]  # (distance, node)
    dist[s] = 0
    seen = [False] * n  # ノードが確定済みかどうか
    while hq:
        v = heappop(hq)[1]  # ノードを pop する
        seen[v] = True
        for to, cost in adj[v]:  # ノード v に隣接しているノードに対して
            if seen[to] == False and dist[v] + cost < dist[to]:
                dist[to] = dist[v] + cost
                heappush(hq, (dist[to], to))
    return dist


N, K = map(int, input().split())
sx, sy, gx, gy = map(int, input().split())
Points = [[sx, sy]]
for _ in range(N):
    Points.append(list(map(int, input().split())))
Points.append([gx, gy])
# 距離配列作成
dist = [[0]*(N+2) for _ in range(N+2)]
for i in range(N+2):
    for j in range(N+2):
        if i == j:
            continue
        D = abs(Points[i][0]-Points[j][0])+abs(Points[i][1]-Points[j][1])
        dist[i][j] = D
        dist[j][i] = D
l = 0
r = 2*10**5 + 5
while r-l > 1:
    Edge = [[] for _ in range(N+2)]
    mid = (l+r)//2
    for i in range(N+2):
        for j in range(i+1, N+2):
            p = dist[i][j]//mid
            if dist[i][j] % mid == 0:
                p -= 1
            Edge[i].append((j, p))
            Edge[j].append((i, p))
    res = dijkstra(0, N+2, Edge)
    if res[-1] <= K:
        r = mid
    else:
        l = mid
print(r)
0