結果

問題 No.2366 登校
ユーザー shobonvipshobonvip
提出日時 2023-06-30 04:43:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,040 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 109,336 KB
最終ジャッジ日時 2024-07-07 21:53:30
合計ジャッジ時間 13,989 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
76,532 KB
testcase_01 AC 37 ms
53,248 KB
testcase_02 AC 56 ms
65,520 KB
testcase_03 AC 132 ms
77,360 KB
testcase_04 AC 38 ms
53,376 KB
testcase_05 AC 88 ms
76,544 KB
testcase_06 AC 132 ms
77,784 KB
testcase_07 AC 138 ms
77,276 KB
testcase_08 AC 158 ms
77,976 KB
testcase_09 AC 155 ms
77,632 KB
testcase_10 AC 63 ms
66,432 KB
testcase_11 AC 96 ms
76,544 KB
testcase_12 AC 759 ms
90,300 KB
testcase_13 AC 770 ms
90,480 KB
testcase_14 AC 781 ms
90,528 KB
testcase_15 AC 797 ms
90,564 KB
testcase_16 WA -
testcase_17 AC 820 ms
90,612 KB
testcase_18 AC 799 ms
91,052 KB
testcase_19 AC 806 ms
90,560 KB
testcase_20 AC 821 ms
90,684 KB
testcase_21 WA -
testcase_22 AC 621 ms
89,276 KB
testcase_23 WA -
testcase_24 AC 333 ms
100,080 KB
testcase_25 AC 1,275 ms
109,336 KB
testcase_26 AC 1,275 ms
108,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

n, m, k, t = map(int,input().split())
modoru = [[(-1,-1) for j in range(m)] for i in range(n)]
for i in range(k):
	a, b, c, d = map(int,input().split())
	a -= 1
	b -= 1
	modoru[a][b] = (c, d)

tmax = 401

d = [10 ** 18] * n * m * tmax
d[200] = 0

pq = [(d[200], 200)]

r1 = m * tmax

while pq:
	tmp, nowv = heapq.heappop(pq)
	fnv = nowv
	nowt = nowv % tmax
	nowv //= tmax
	b = nowv % m
	a = nowv // m
	if tmp > d[fnv]: continue
	for xx, yy in [(-1, 0), (1, 0), (0, 1), (0, -1)]:
		x = a + xx
		y = b + yy
		if 0 <= x < n and 0 <= y < m:
			dist = tmp
			targ = x*r1 + y*tmax + min(nowt+1, tmax-1)
			if dist < d[targ]:
				d[targ] = dist
				heapq.heappush(pq, (dist, targ))
	if modoru[a][b][0] == -1: continue
	c, dd = modoru[a][b]
	dist = tmp + dd
	targ = a*r1 + b*tmax + max(0, nowt-c+1)
	if dist < d[targ]:
		d[targ] = dist
		heapq.heappush(pq, (dist, targ))

ans = 10 ** 18
for ts in range(tmax):
	if ts - 200 >= t: continue
	ans = min(ans, d[(n-1)*r1 + (m-1)*tmax + ts])

if ans == 10 ** 18:
	print(-1)
else:
	print(ans)
0