結果

問題 No.2354 Poor Sight in Winter
ユーザー chankei271828chankei271828
提出日時 2023-06-16 22:42:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,505 ms / 2,000 ms
コード長 1,586 bytes
コンパイル時間 484 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 231,688 KB
最終ジャッジ日時 2024-06-24 15:30:05
合計ジャッジ時間 13,849 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,336 KB
testcase_01 AC 42 ms
55,196 KB
testcase_02 AC 41 ms
53,788 KB
testcase_03 AC 41 ms
54,044 KB
testcase_04 AC 41 ms
53,424 KB
testcase_05 AC 42 ms
53,912 KB
testcase_06 AC 40 ms
53,540 KB
testcase_07 AC 42 ms
54,408 KB
testcase_08 AC 42 ms
53,872 KB
testcase_09 AC 54 ms
64,632 KB
testcase_10 AC 53 ms
64,124 KB
testcase_11 AC 724 ms
229,060 KB
testcase_12 AC 797 ms
228,832 KB
testcase_13 AC 1,151 ms
229,868 KB
testcase_14 AC 1,505 ms
227,048 KB
testcase_15 AC 1,074 ms
227,872 KB
testcase_16 AC 1,264 ms
231,688 KB
testcase_17 AC 1,049 ms
230,644 KB
testcase_18 AC 483 ms
110,064 KB
testcase_19 AC 821 ms
175,040 KB
testcase_20 AC 593 ms
116,084 KB
testcase_21 AC 216 ms
79,852 KB
testcase_22 AC 410 ms
90,216 KB
testcase_23 AC 383 ms
91,668 KB
testcase_24 AC 679 ms
142,636 KB
testcase_25 AC 276 ms
84,188 KB
testcase_26 AC 251 ms
82,188 KB
testcase_27 AC 122 ms
77,160 KB
testcase_28 AC 177 ms
79,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
def dijkstra(size,cost,start):#startが(0,0)になってるので、適宜変更して入力にも足す
    dist=[float("inf")]*size #dist[i]=0からiまでの最短距離
    dist[start]=0
    h=[]#(0からの暫定距離, 点の番号)というタプルを入れていくheap
    heapq.heappush(h,(0,start))
    while len(h)!=0:
        now=heapq.heappop(h)
        for tup in cost[now[1]]:
            if dist[now[1]]+tup[1]<dist[tup[0]]:
                dist[tup[0]]=dist[now[1]]+tup[1]
                heapq.heappush(h,(dist[tup[0]],tup[0]))
    return dist


def dist0(tup1,tup2):
    return abs(tup1[0]-tup2[0])+abs(tup1[1]-tup2[1])
N,K=map(int,input().split())
sx,sy,gx,gy=map(int,input().split())
ok=3*10**5
ng=0
ji=[tuple(map(int,input().split())) for _ in range(N)]
while ok-ng>1:
    #print(ok,ng)
    now=(ok+ng)//2
    graph=[[] for _ in range(N+2)]
    graph[N].append((N+1,(dist0((sx,sy),(gx,gy))+now-1)//now-1))
    graph[N+1].append((N,(dist0((sx,sy),(gx,gy))+now-1)//now-1))
    for i in range(N):
        graph[i].append((N,(dist0((sx,sy),ji[i])+now-1)//now-1))
        graph[N].append((i,(dist0((sx,sy),ji[i])+now-1)//now-1))
        graph[i].append((N+1,(dist0((gx,gy),ji[i])+now-1)//now-1))
        graph[N+1].append((i,(dist0((gx,gy),ji[i])+now-1)//now-1))
    for i in range(N-1):
        for j in range(i+1,N):
            graph[i].append((j,(dist0(ji[j],ji[i])+now-1)//now-1))
            graph[j].append((i,(dist0(ji[j],ji[i])+now-1)//now-1))
    dist=dijkstra(N+2,graph,N)
    if dist[N+1]<=K:
        ok=now
    else:
        ng=now
print(ok)
0