結果
問題 | No.2366 登校 |
ユーザー | titia |
提出日時 | 2023-07-01 02:29:50 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,116 bytes |
コンパイル時間 | 192 ms |
コンパイル使用メモリ | 81,664 KB |
実行使用メモリ | 178,088 KB |
最終ジャッジ日時 | 2024-07-08 09:02:18 |
合計ジャッジ時間 | 38,021 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 115 ms
76,672 KB |
testcase_01 | AC | 38 ms
53,888 KB |
testcase_02 | AC | 52 ms
64,896 KB |
testcase_03 | AC | 114 ms
77,252 KB |
testcase_04 | AC | 36 ms
53,248 KB |
testcase_05 | AC | 71 ms
74,368 KB |
testcase_06 | AC | 117 ms
77,160 KB |
testcase_07 | AC | 133 ms
77,568 KB |
testcase_08 | AC | 153 ms
78,724 KB |
testcase_09 | AC | 158 ms
78,772 KB |
testcase_10 | AC | 59 ms
67,328 KB |
testcase_11 | AC | 94 ms
76,544 KB |
testcase_12 | AC | 2,355 ms
117,596 KB |
testcase_13 | AC | 2,167 ms
114,376 KB |
testcase_14 | AC | 2,253 ms
116,276 KB |
testcase_15 | AC | 2,273 ms
118,944 KB |
testcase_16 | AC | 2,227 ms
113,872 KB |
testcase_17 | AC | 2,901 ms
116,344 KB |
testcase_18 | AC | 2,271 ms
119,728 KB |
testcase_19 | AC | 2,250 ms
116,540 KB |
testcase_20 | AC | 2,355 ms
117,696 KB |
testcase_21 | AC | 2,210 ms
117,084 KB |
testcase_22 | AC | 1,865 ms
117,724 KB |
testcase_23 | AC | 909 ms
113,368 KB |
testcase_24 | AC | 900 ms
113,820 KB |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
ソースコード
import sys input = sys.stdin.readline from heapq import heappop,heappush N,M,K,T=map(int,input().split()) X=[[(-1,-1)]*M for i in range(N)] for i in range(K): a,b,c,d=map(int,input().split()) a-=1 b-=1 X[a][b]=[c,d] DP=[[[1<<63]*M for i in range(N)] for j in range(400)] Q=[(0,0,0,0)] DP[200][0][0]=0 while Q: now,x,y,time=heappop(Q) if DP[time+200][x][y]!=now: continue for z,w in [(x,y+1),(x,y-1),(x+1,y),(x-1,y)]: if 0<=z<N and 0<=w<M and 0<=time+1+200<400 and DP[time+1+200][z][w]>now: DP[time+1+200][z][w]=now heappush(Q,(DP[time+1+200][z][w],z,w,time+1)) if X[x][y]!=(-1,-1): c,d=X[x][y] if 0<=time-c+1+200<400 and DP[time-c+1+200][x][y]>now+d: DP[time-c+1+200][x][y]=now+d heappush(Q,(DP[time-c+1+200][x][y],x,y,time-c+1)) elif time-c+1+200<0 and DP[0][x][y]>now+d: DP[0][x][y]=now+d heappush(Q,(DP[0][x][y],x,y,-200)) ANS=1<<63 for i in range(400): if i-200<=T: ANS=min(ANS,DP[i][N-1][M-1]) if ANS>=1<<60: print(-1) else: print(ANS)