結果
問題 | No.2095 High Rise |
ユーザー | roaris |
提出日時 | 2022-10-07 21:58:36 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 937 bytes |
コンパイル時間 | 320 ms |
コンパイル使用メモリ | 82,184 KB |
実行使用メモリ | 129,268 KB |
最終ジャッジ日時 | 2024-06-12 07:17:17 |
合計ジャッジ時間 | 14,451 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
52,772 KB |
testcase_01 | AC | 35 ms
53,012 KB |
testcase_02 | AC | 36 ms
52,972 KB |
testcase_03 | AC | 38 ms
54,656 KB |
testcase_04 | AC | 41 ms
54,188 KB |
testcase_05 | AC | 34 ms
52,620 KB |
testcase_06 | AC | 36 ms
54,260 KB |
testcase_07 | AC | 35 ms
52,768 KB |
testcase_08 | AC | 34 ms
53,220 KB |
testcase_09 | AC | 35 ms
53,096 KB |
testcase_10 | AC | 35 ms
54,192 KB |
testcase_11 | AC | 35 ms
54,060 KB |
testcase_12 | AC | 113 ms
77,316 KB |
testcase_13 | AC | 113 ms
78,000 KB |
testcase_14 | AC | 131 ms
77,840 KB |
testcase_15 | AC | 128 ms
77,480 KB |
testcase_16 | AC | 90 ms
76,852 KB |
testcase_17 | AC | 297 ms
82,416 KB |
testcase_18 | AC | 241 ms
79,940 KB |
testcase_19 | AC | 157 ms
77,800 KB |
testcase_20 | AC | 356 ms
83,736 KB |
testcase_21 | AC | 593 ms
90,416 KB |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
ソースコード
import sys input = sys.stdin.readline from heapq import * N, M = map(int, input().split()) A = [list(map(int, input().split())) for _ in range(N)] dist = [[[10**18]*M for _ in range(N)] for _ in range(2)] pq = [] for i in range(M): dist[0][0][i] = 0 heappush(pq, (0, 100*i)) while pq: d, xyf = heappop(pq) xy, f = divmod(xyf, 100) x, y = divmod(xy, 10**5) if dist[f][x][y]<d: continue for nx, ny in [(x, y-1), (x, y+1), (x+1, y)]: if 0<=nx<N and 0<=ny<M: if (nx, ny)==(x+1, y): w = A[nx][ny] if f==1 else A[x][y]+A[nx][ny] nf = 1 else: w = 0 nf = 0 if dist[nf][nx][ny]>dist[f][x][y]+w: dist[nf][nx][ny] = dist[f][x][y]+w heappush(pq, (dist[nf][nx][ny], (nx*10**5+ny)*100+nf)) ans = min(min(dist[0][N-1]), min(dist[1][N-1])) print(ans)