結果

問題 No.1283 Extra Fee
ユーザー wgrapewgrape
提出日時 2024-11-14 17:14:46
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,043 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 152,408 KB
最終ジャッジ日時 2024-11-14 17:15:23
合計ジャッジ時間 36,166 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
53,808 KB
testcase_01 AC 38 ms
53,056 KB
testcase_02 AC 40 ms
54,348 KB
testcase_03 AC 40 ms
52,944 KB
testcase_04 AC 40 ms
52,884 KB
testcase_05 AC 39 ms
53,280 KB
testcase_06 AC 42 ms
54,620 KB
testcase_07 AC 41 ms
54,276 KB
testcase_08 AC 48 ms
61,036 KB
testcase_09 AC 46 ms
54,548 KB
testcase_10 AC 42 ms
54,740 KB
testcase_11 AC 268 ms
81,716 KB
testcase_12 AC 345 ms
80,588 KB
testcase_13 AC 209 ms
77,916 KB
testcase_14 AC 450 ms
80,892 KB
testcase_15 AC 644 ms
84,004 KB
testcase_16 AC 266 ms
78,176 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 1,886 ms
103,728 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
G = [[1] * N for i in range(N)]
G[0][0] = 0

for _ in range(M):
    h,w,c = map(int,input().split())
    G[h - 1][w - 1] += c
    
import heapq as hq
q = []
hq.heappush(q, (0, 0, 0, 0))
visited = [[[False] * N for i in range(N)] for used in range(2)]
cases = ((1,0),(0,1),(-1,0),(0,-1))
while q:
    c, used, i, j = hq.heappop(q)
    if visited[used][i][j]:
        continue
    visited[used][i][j] = True
    if i == N - 1 and j == N - 1:
        print(c)
        break
    for ci,cj in cases:
        ni = i + ci
        nj = j + cj
        if not (0 <= ni < N and 0 <= nj < N):
            continue
        if G[ni][nj] > 1 and used == 0: # まだ権利を使っていない
            if not visited[used + 1][ni][nj]:
                hq.heappush(q, (c + 1, used + 1, ni, nj))
            if not visited[used][ni][nj]:
                hq.heappush(q, (c + G[ni][nj], used, ni, nj))
        else:
            if not visited[used][ni][nj]:
                hq.heappush(q, (c + G[ni][nj], used, ni, nj))
    



0