結果

問題 No.1283 Extra Fee
ユーザー DrDrpilotDrDrpilot
提出日時 2022-03-15 13:10:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,568 ms / 2,000 ms
コード長 1,045 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 120,344 KB
最終ジャッジ日時 2024-11-16 08:39:30
合計ジャッジ時間 21,707 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,608 KB
testcase_01 AC 46 ms
52,224 KB
testcase_02 AC 43 ms
52,736 KB
testcase_03 AC 42 ms
52,480 KB
testcase_04 AC 42 ms
52,736 KB
testcase_05 AC 42 ms
52,736 KB
testcase_06 AC 44 ms
52,992 KB
testcase_07 AC 43 ms
52,480 KB
testcase_08 AC 47 ms
53,504 KB
testcase_09 AC 45 ms
52,992 KB
testcase_10 AC 45 ms
52,736 KB
testcase_11 AC 215 ms
79,264 KB
testcase_12 AC 248 ms
79,536 KB
testcase_13 AC 193 ms
78,208 KB
testcase_14 AC 351 ms
82,136 KB
testcase_15 AC 465 ms
85,292 KB
testcase_16 AC 214 ms
78,712 KB
testcase_17 AC 1,398 ms
117,440 KB
testcase_18 AC 1,424 ms
107,664 KB
testcase_19 AC 1,425 ms
107,900 KB
testcase_20 AC 1,337 ms
105,808 KB
testcase_21 AC 1,348 ms
105,660 KB
testcase_22 AC 1,189 ms
102,100 KB
testcase_23 AC 1,183 ms
103,436 KB
testcase_24 AC 1,192 ms
103,424 KB
testcase_25 AC 1,485 ms
108,488 KB
testcase_26 AC 1,469 ms
108,316 KB
testcase_27 AC 1,434 ms
108,288 KB
testcase_28 AC 1,481 ms
108,288 KB
testcase_29 AC 1,568 ms
120,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
n,m=map(int,input().split())
money=[[0]*n for _ in range(n)]
for _ in range(m):
    h,w,c=map(int,input().split())
    money[h-1][w-1]=c
inf=10**18
d=[[[inf]*2 for _ in range(n)] for _ in range(n)]
d[0][0][0]=0
q=[(0,0,0,0)]
while q:
    now_d,y,x,use=heapq.heappop(q)
    if d[y][x][use]<now_d:
        continue
    if y==x==n-1:
        break
    for dy,dx in [(1,0),(0,1),(-1,0),(0,-1)]:
        ny=y+dy;nx=x+dx
        if 0<=ny<n and 0<=nx<n:
            if money[ny][nx]==0:
                if d[ny][nx][use]>now_d+1:
                    d[ny][nx][use]=now_d+1
                    heapq.heappush(q,(now_d+1,ny,nx,use))
            else:
                cost=money[ny][nx]
                if d[ny][nx][use]>now_d+cost+1:
                    d[ny][nx][use]=now_d+cost+1
                    heapq.heappush(q,(now_d+cost+1,ny,nx,use))
                if use==0:
                    if d[ny][nx][1]>now_d+1:
                        d[ny][nx][1]=now_d+1
                        heapq.heappush(q,(now_d+1,ny,nx,1))
print(d[-1][-1][1])
0