結果

問題 No.2354 Poor Sight in Winter
ユーザー komkompi
提出日時 2023-06-24 15:53:58
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,421 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 341,632 KB
最終ジャッジ日時 2024-07-01 18:51:05
合計ジャッジ時間 5,041 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 3 RE * 5 TLE * 1 -- * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
from collections import defaultdict
import heapq as hq

N,K=map(int,input().split())

MAX=10**9
dp=[[[MAX for i in range(N)] for j in range(N)] for k in range(K)]
edges=defaultdict(dict)

def get_distance(loc1,loc2):
    x1,y1=loc1
    x2,y2=loc2
    
    return abs(x2-x1)+abs(y2-y1)

sx,sy,gx,gy=map(int,input().split())
distance=get_distance((sx,sy),(gx,gy))
edges[(sx,sy)][(gx,gy)]=distance
edges[(gx,gy)][(sx,sy)]=distance


for _ in range(N):
    x,y=map(int,input().split())
    
    nodes=list(edges.keys())
    
    for nx,ny in nodes:
        distance=get_distance((x,y),(nx,ny))
        edges[(x,y)][(nx,ny)]=distance
        edges[(nx,ny)][(x,y)]=distance


def search_way(p,goal):
    dp=defaultdict(lambda:10**9)
    start=[[0,(sx,sy)]]
    hq.heapify(start)
    
    while start:
        cost,now=hq.heappop(start)
        if dp[now]<=cost:
            continue
        else:
            dp[now]=cost
        
        for (nx,ny),dist in edges[now].items():
            shortage=dist-p
            need_light=max(-(-shortage//p),0)
            
            hq.heappush(start,[cost+need_light,(nx,ny)])

    if dp[goal]<=K:
        return True
    else:
        return False
            
high=10**9
low=-1

while high-low>1:
    middle=(high+low)//2
    judge=search_way(middle,(gx,gy))
    
    if judge:
        high=middle
    else:
        low=middle
    
print(high)

0