結果

問題 No.2366 登校
ユーザー logxlogx
提出日時 2021-06-29 21:48:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,104 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 29,696 KB
最終ジャッジ日時 2024-07-08 08:43:50
合計ジャッジ時間 31,908 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
11,008 KB
testcase_01 AC 35 ms
10,880 KB
testcase_02 AC 33 ms
11,008 KB
testcase_03 AC 33 ms
11,008 KB
testcase_04 AC 33 ms
11,008 KB
testcase_05 AC 34 ms
10,880 KB
testcase_06 AC 33 ms
10,880 KB
testcase_07 AC 27 ms
11,008 KB
testcase_08 AC 30 ms
10,880 KB
testcase_09 AC 28 ms
10,880 KB
testcase_10 AC 28 ms
11,008 KB
testcase_11 AC 27 ms
10,880 KB
testcase_12 AC 2,019 ms
16,128 KB
testcase_13 AC 2,024 ms
16,384 KB
testcase_14 AC 2,062 ms
16,384 KB
testcase_15 AC 2,041 ms
16,384 KB
testcase_16 AC 1,969 ms
16,256 KB
testcase_17 AC 2,003 ms
16,384 KB
testcase_18 AC 2,007 ms
16,128 KB
testcase_19 AC 1,988 ms
16,384 KB
testcase_20 AC 2,011 ms
16,256 KB
testcase_21 AC 2,065 ms
16,384 KB
testcase_22 AC 1,728 ms
15,872 KB
testcase_23 AC 1,427 ms
29,696 KB
testcase_24 AC 1,417 ms
29,568 KB
testcase_25 TLE -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

def chmin(a,b):
    if a>b:
        return True
    return False

N,M,K,T=map(int,input().split())
C=[[0]*M for i in range(N)]
D=[[0]*M for i in range(N)]

def valid(i,j):
    return 0<=i and i<N and 0<=j and j<M

for i in range(K):
    a,b,c,d=map(int,input().split())
    C[a-1][b-1]=c
    D[a-1][b-1]=d

INF=10**15
dp=[[[INF]*M for i in range(N)] for j in range(2*(N+M)+1)]
dp[0+N+M][0][0]=0

q=[(0,0+N+M,0,0)]
dxy=[(0,1),(1,0),(0,-1),(-1,0)]

while len(q):
    tir,time,a,b=heapq.heappop(q)
    if dp[time][a][b] < tir:
        continue
    for dx,dy in dxy:
        na,nb = a+dx, b+dy
        if valid(na,nb) and time<2*(N+M) and dp[time+1][na][nb] > tir:
            dp[time+1][na][nb]=dp[time][a][b]
            heapq.heappush(q,(tir,time+1,na,nb))
    
    if C[a][b]>0 and D[a][b]>0:
        ntime=max(0,time-C[a][b]+1)
        if dp[ntime][a][b] > tir+D[a][b]:
            dp[ntime][a][b]=tir+D[a][b]
            heapq.heappush(q,(dp[ntime][a][b],ntime,a,b))

ans=INF

for i in range(-(N+M),min(T+1,N+M+1)):
    ans=min(ans,dp[i+N+M][N-1][M-1])

if ans==INF:
    ans=-1
print(ans)
0