結果
| 問題 | No.1283 Extra Fee | 
| コンテスト | |
| ユーザー | 👑  Kazun | 
| 提出日時 | 2021-02-10 18:23:51 | 
| 言語 | PyPy3 (7.3.15) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 885 ms / 2,000 ms | 
| コード長 | 1,390 bytes | 
| コンパイル時間 | 547 ms | 
| コンパイル使用メモリ | 82,308 KB | 
| 実行使用メモリ | 117,224 KB | 
| 最終ジャッジ日時 | 2024-11-16 07:18:03 | 
| 合計ジャッジ時間 | 13,482 ms | 
| ジャッジサーバーID (参考情報) | judge1 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 30 | 
ソースコード
class A:
    def __init__(self,d,x):
        self.d=d
        self.x=x
    def __lt__(self,other):
        return self.d<other.d
    def __iter__(self):
        yield from (self.d,self.x)
def main():
    import sys
    from heapq import heappop,heappush
    input=sys.stdin.readline
    N,M=map(int,input().split())
    inf=float("inf")
    F=[[1]*(N+1) for _ in range(N+1)]
    for _ in range(M):
        h,w,c=map(int,input().split())
        F[h][w]+=c
    V=[(1,0),(-1,0),(0,1),(0,-1)]
    Dist0=[[inf]*(N+1) for __ in range(N+1)]
    Dist1=[[inf]*(N+1) for __ in range(N+1)]
    Dist0[1][1]=0
    Q=[A(0,(1,1,0))]
    while Q:
        d,v=heappop(Q)
        i,j,m=v
        if (m==0 and d<Dist0[i][j]) or (m==1 and d<Dist1[i][j]):
            continue
        if i==j==N:
            break
        for (a,b) in V:
            if 1<=i+a<=N and 1<=j+b<=N:
                c=d+F[i+a][j+b]
                if m==0 and c<Dist0[i+a][j+b]:
                    Dist0[i+a][j+b]=c
                    heappush(Q,A(c,(i+a,j+b,0)))
                if m==1 and c<Dist1[i+a][j+b]:
                    Dist1[i+a][j+b]=c
                    heappush(Q,A(c,(i+a,j+b,1)))
                if m==0 and d+1<Dist1[i+a][j+b]:
                    Dist1[i+a][j+b]=d+1
                    heappush(Q,A(d+1,(i+a,j+b,1)))
    print(min(Dist0[N][N],Dist1[N][N]))
if __name__=="__main__":
    main()
            
            
            
        