結果
問題 | No.2366 登校 |
ユーザー | titia |
提出日時 | 2023-07-01 02:16:52 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 904 bytes |
コンパイル時間 | 342 ms |
コンパイル使用メモリ | 82,436 KB |
実行使用メモリ | 161,500 KB |
最終ジャッジ日時 | 2024-07-07 22:07:20 |
合計ジャッジ時間 | 36,626 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 115 ms
77,160 KB |
testcase_01 | AC | 47 ms
53,888 KB |
testcase_02 | AC | 66 ms
64,768 KB |
testcase_03 | AC | 165 ms
77,856 KB |
testcase_04 | AC | 45 ms
53,376 KB |
testcase_05 | AC | 77 ms
69,120 KB |
testcase_06 | AC | 141 ms
77,260 KB |
testcase_07 | AC | 168 ms
77,968 KB |
testcase_08 | AC | 206 ms
78,888 KB |
testcase_09 | AC | 176 ms
77,516 KB |
testcase_10 | AC | 68 ms
67,456 KB |
testcase_11 | AC | 115 ms
76,668 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 2,817 ms
115,652 KB |
testcase_16 | AC | 2,807 ms
115,788 KB |
testcase_17 | AC | 2,725 ms
115,328 KB |
testcase_18 | WA | - |
testcase_19 | AC | 2,721 ms
117,680 KB |
testcase_20 | AC | 2,758 ms
116,300 KB |
testcase_21 | AC | 2,761 ms
115,656 KB |
testcase_22 | AC | 1,183 ms
99,660 KB |
testcase_23 | TLE | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
ソースコード
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: #print(Q) now,x,y,time=heappop(Q) 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+200<400 and DP[time-c+200][z][w]>now+d: DP[time-c+200][z][w]=now+d heappush(Q,(DP[time-c+200][z][w],x,y,time-c)) ANS=1<<63 for i in range(400): if i-200<=T: ANS=min(ANS,DP[i][N-1][M-1]) print(ANS)