結果
問題 | No.2354 Poor Sight in Winter |
ユーザー | flygon |
提出日時 | 2023-06-16 22:34:54 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,206 bytes |
コンパイル時間 | 396 ms |
コンパイル使用メモリ | 82,020 KB |
実行使用メモリ | 101,424 KB |
最終ジャッジ日時 | 2024-06-24 15:15:07 |
合計ジャッジ時間 | 8,797 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
54,912 KB |
testcase_01 | AC | 47 ms
55,040 KB |
testcase_02 | AC | 43 ms
54,912 KB |
testcase_03 | RE | - |
testcase_04 | AC | 42 ms
55,024 KB |
testcase_05 | RE | - |
testcase_06 | AC | 43 ms
54,656 KB |
testcase_07 | AC | 45 ms
54,912 KB |
testcase_08 | AC | 45 ms
54,656 KB |
testcase_09 | AC | 60 ms
66,432 KB |
testcase_10 | AC | 57 ms
65,536 KB |
testcase_11 | AC | 435 ms
100,096 KB |
testcase_12 | AC | 421 ms
99,776 KB |
testcase_13 | AC | 625 ms
101,424 KB |
testcase_14 | AC | 688 ms
101,192 KB |
testcase_15 | AC | 583 ms
100,736 KB |
testcase_16 | AC | 645 ms
101,120 KB |
testcase_17 | AC | 613 ms
100,992 KB |
testcase_18 | AC | 326 ms
86,020 KB |
testcase_19 | AC | 479 ms
93,312 KB |
testcase_20 | AC | 353 ms
87,424 KB |
testcase_21 | AC | 141 ms
78,720 KB |
testcase_22 | AC | 262 ms
82,944 KB |
testcase_23 | AC | 268 ms
82,688 KB |
testcase_24 | AC | 420 ms
90,880 KB |
testcase_25 | RE | - |
testcase_26 | AC | 214 ms
80,384 KB |
testcase_27 | AC | 120 ms
77,696 KB |
testcase_28 | AC | 147 ms
78,464 KB |
ソースコード
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 = 0 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)