結果

問題 No.2354 Poor Sight in Winter
ユーザー flygonflygon
提出日時 2023-06-16 22:35:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 672 ms / 2,000 ms
コード長 1,206 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 101,524 KB
最終ジャッジ日時 2024-06-24 15:15:56
合計ジャッジ時間 8,428 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
56,016 KB
testcase_01 AC 43 ms
54,632 KB
testcase_02 AC 45 ms
55,704 KB
testcase_03 AC 45 ms
56,224 KB
testcase_04 AC 44 ms
55,184 KB
testcase_05 AC 44 ms
56,248 KB
testcase_06 AC 45 ms
55,192 KB
testcase_07 AC 44 ms
54,872 KB
testcase_08 AC 43 ms
55,496 KB
testcase_09 AC 61 ms
67,296 KB
testcase_10 AC 59 ms
66,516 KB
testcase_11 AC 428 ms
100,124 KB
testcase_12 AC 412 ms
99,636 KB
testcase_13 AC 605 ms
101,184 KB
testcase_14 AC 672 ms
101,168 KB
testcase_15 AC 569 ms
101,060 KB
testcase_16 AC 642 ms
101,524 KB
testcase_17 AC 588 ms
100,848 KB
testcase_18 AC 314 ms
86,324 KB
testcase_19 AC 470 ms
93,196 KB
testcase_20 AC 343 ms
87,452 KB
testcase_21 AC 137 ms
78,680 KB
testcase_22 AC 258 ms
82,820 KB
testcase_23 AC 272 ms
82,716 KB
testcase_24 AC 420 ms
90,700 KB
testcase_25 AC 207 ms
80,928 KB
testcase_26 AC 181 ms
79,916 KB
testcase_27 AC 104 ms
77,208 KB
testcase_28 AC 138 ms
78,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

n,k = map(int,input().split())
sx,sy,gx,gy = map(int,input().split())
xy = [[sx,sy]]
for i in range(n):
    xy.append(list(map(int,input().split())))
xy.append([gx,gy])
graph = [[] for i in range(n+2)]

for i in range(n+2):
    xi,yi = xy[i]
    for j in range(n+2):
        xj,yj = xy[j]
        if i == j: continue
        graph[i].append([j,abs(xi-xj) + abs(yi-yj)])


#ダイクストラ法
def dijkstra(s,n, p): # sがスタート、nが頂点数
    INF = 10**15
    dist = [INF]*(n+1)
    que = [(0,s)]
    dist[s] = 0
    while que:
        c,crr = heappop(que)
        if c > dist[crr]: continue
        for nxt, cost in graph[crr]:
            cnt = (cost-1)//p
            if dist[crr] + cnt < dist[nxt]:
                dist[nxt] = dist[crr] + cnt
                heappush(que,(dist[nxt],nxt))
    return dist[-2]

l = 1
r = 10**6

for i in range(40):
    m = (l+r)//2
    cnt = dijkstra(0, n+2, m)
    if cnt <= k:
        r = m
    else:
        l = m
    
print(r)


0