結果
問題 | No.2695 Warp Zone |
ユーザー | flygon |
提出日時 | 2024-03-22 22:12:45 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,129 bytes |
コンパイル時間 | 287 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 178,304 KB |
最終ジャッジ日時 | 2024-09-30 11:41:46 |
合計ジャッジ時間 | 5,148 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
54,272 KB |
testcase_01 | AC | 38 ms
54,400 KB |
testcase_02 | AC | 38 ms
54,400 KB |
testcase_03 | AC | 327 ms
178,304 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 311 ms
177,792 KB |
testcase_07 | AC | 321 ms
178,156 KB |
testcase_08 | WA | - |
testcase_09 | AC | 171 ms
106,880 KB |
testcase_10 | AC | 40 ms
54,912 KB |
testcase_11 | AC | 103 ms
84,352 KB |
testcase_12 | WA | - |
testcase_13 | AC | 41 ms
54,144 KB |
testcase_14 | AC | 213 ms
132,092 KB |
testcase_15 | AC | 138 ms
98,304 KB |
testcase_16 | AC | 91 ms
79,616 KB |
testcase_17 | AC | 121 ms
88,832 KB |
testcase_18 | AC | 272 ms
152,576 KB |
testcase_19 | WA | - |
testcase_20 | AC | 258 ms
147,456 KB |
testcase_21 | AC | 227 ms
131,072 KB |
testcase_22 | WA | - |
testcase_23 | AC | 177 ms
116,352 KB |
testcase_24 | AC | 41 ms
54,400 KB |
testcase_25 | AC | 40 ms
54,400 KB |
testcase_26 | AC | 39 ms
54,144 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 h,w,n = map(int,input().split()) za = [list(map(int,input().split())) for i in range(n)] graph = [[] for i in range(n+3)] for i in range(n): ai,bi,ci,di = za[i] for j in range(n): if i == j: continue aj,bj,cj,dj = za[j] dis = abs(ci-aj) + abs(di-bj) graph[i].append((j, dis+1)) graph[j].append((i, dis+1)) graph[n].append((i, ai+bi-2)) graph[i].append((n+1, abs(h-ci)+abs(w-di))) #ダイクストラ法 def dijkstra(s,n): # 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]: if dist[crr] + cost < dist[nxt]: dist[nxt] = dist[crr] + cost heappush(que,(dist[nxt],nxt)) return dist d = dijkstra(n,n+2) print(min(d[n+1]+1, h+w-2))