結果

問題 No.2354 Poor Sight in Winter
ユーザー chankei271828chankei271828
提出日時 2023-06-16 22:38:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,473 bytes
コンパイル時間 629 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 232,328 KB
最終ジャッジ日時 2024-06-24 15:21:48
合計ジャッジ時間 12,973 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,384 KB
testcase_01 AC 40 ms
54,664 KB
testcase_02 AC 39 ms
53,136 KB
testcase_03 AC 41 ms
53,440 KB
testcase_04 AC 40 ms
54,380 KB
testcase_05 AC 40 ms
53,336 KB
testcase_06 AC 39 ms
53,204 KB
testcase_07 AC 40 ms
54,156 KB
testcase_08 AC 40 ms
54,376 KB
testcase_09 AC 49 ms
62,848 KB
testcase_10 AC 55 ms
64,708 KB
testcase_11 WA -
testcase_12 AC 780 ms
228,856 KB
testcase_13 AC 1,124 ms
231,108 KB
testcase_14 AC 1,371 ms
232,328 KB
testcase_15 AC 1,000 ms
228,288 KB
testcase_16 AC 1,022 ms
231,660 KB
testcase_17 AC 1,029 ms
228,864 KB
testcase_18 AC 478 ms
110,276 KB
testcase_19 AC 801 ms
174,692 KB
testcase_20 AC 598 ms
116,868 KB
testcase_21 WA -
testcase_22 AC 368 ms
89,864 KB
testcase_23 AC 360 ms
90,148 KB
testcase_24 AC 645 ms
143,168 KB
testcase_25 AC 261 ms
84,448 KB
testcase_26 AC 238 ms
82,312 KB
testcase_27 AC 122 ms
77,396 KB
testcase_28 AC 173 ms
78,920 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)]
cnt=0
while ok-ng>1:
    cnt+=1
    #print(ok,ng)
    now=(ok+ng)//2
    graph=[[] for _ in range(N+2)]
    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