結果

問題 No.1283 Extra Fee
ユーザー mkawa2mkawa2
提出日時 2020-11-07 11:40:21
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,414 bytes
コンパイル時間 891 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 122,208 KB
最終ジャッジ日時 2024-11-16 07:05:48
合計ジャッジ時間 19,373 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,732 KB
testcase_01 AC 40 ms
55,504 KB
testcase_02 AC 41 ms
55,828 KB
testcase_03 AC 40 ms
55,704 KB
testcase_04 AC 40 ms
55,876 KB
testcase_05 AC 44 ms
55,600 KB
testcase_06 AC 46 ms
56,152 KB
testcase_07 AC 44 ms
55,772 KB
testcase_08 AC 47 ms
56,664 KB
testcase_09 AC 47 ms
55,816 KB
testcase_10 AC 45 ms
56,316 KB
testcase_11 AC 211 ms
80,124 KB
testcase_12 AC 213 ms
80,132 KB
testcase_13 AC 157 ms
78,616 KB
testcase_14 AC 290 ms
82,716 KB
testcase_15 AC 369 ms
85,264 KB
testcase_16 AC 164 ms
79,232 KB
testcase_17 AC 1,593 ms
119,364 KB
testcase_18 AC 1,184 ms
107,528 KB
testcase_19 AC 1,152 ms
107,148 KB
testcase_20 AC 1,094 ms
105,088 KB
testcase_21 AC 1,105 ms
106,264 KB
testcase_22 AC 1,007 ms
103,040 KB
testcase_23 AC 982 ms
103,684 KB
testcase_24 AC 988 ms
103,424 KB
testcase_25 AC 1,189 ms
108,740 KB
testcase_26 AC 1,168 ms
108,164 KB
testcase_27 AC 1,206 ms
108,496 KB
testcase_28 AC 1,202 ms
108,184 KB
testcase_29 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from operator import itemgetter
from itertools import *
from bisect import *
from collections import *
from heapq import *
import sys

# input=sys.stdin.buffer.readline
input=sys.stdin.readline

sys.setrecursionlimit(10**6)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(input())
def MI(): return map(int, input().split())
def MI1(): return map(int1, input().split())
def LI(): return list(map(int, input().split()))
def LI1(): return list(map(int1, input().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def SI(): return input()[:-1]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
dij = [(1, 0), (0, 1), (-1, 0), (0, -1)]

from heapq import *

def inval(ni,nj,h,w):
    if ni<0 or ni>=h or nj<0 or nj>=w:return True
    return False

inf=10**16
n,m=MI()
cc=[[0]*n for _ in range(n)]
for _ in range(m):
    i,j,c=MI()
    cc[i-1][j-1]=c

hp=[]
dd=[[[inf]*2 for _ in range(n)]for _ in range(n)]
dd[0][0][0]=0
heappush(hp,(0,0,0,0))
while hp:
    d,i,j,k=heappop(hp)
    if d>dd[i][j][k]:continue
    for di,dj in dij:
        ni,nj=i+di,j+dj
        if inval(ni,nj,n,n):continue
        nd=d+cc[ni][nj]+1
        if nd<dd[ni][nj][k]:
            dd[ni][nj][k]=nd
            heappush(hp,(nd,ni,nj,k))
        if k==0 and d+1<dd[ni][nj][1]:
            dd[ni][nj][1]=d+1
            heappush(hp,(d+1,ni,nj,1))

print(dd[n-1][n-1][1])
0