結果
問題 | No.2366 登校 |
ユーザー | shobonvip |
提出日時 | 2023-06-30 04:25:00 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,830 bytes |
コンパイル時間 | 176 ms |
コンパイル使用メモリ | 82,656 KB |
実行使用メモリ | 138,892 KB |
最終ジャッジ日時 | 2024-07-07 21:51:52 |
合計ジャッジ時間 | 7,102 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 105 ms
76,728 KB |
testcase_01 | AC | 38 ms
53,248 KB |
testcase_02 | AC | 49 ms
63,104 KB |
testcase_03 | AC | 147 ms
77,632 KB |
testcase_04 | AC | 37 ms
52,992 KB |
testcase_05 | AC | 91 ms
76,396 KB |
testcase_06 | AC | 102 ms
76,900 KB |
testcase_07 | WA | - |
testcase_08 | AC | 202 ms
77,488 KB |
testcase_09 | AC | 140 ms
77,224 KB |
testcase_10 | AC | 61 ms
67,200 KB |
testcase_11 | AC | 85 ms
76,312 KB |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
ソースコード
# これ解くのに 998244353 時間かかった! # ぼくが弱いだけで, ★3.0 …かも? # よく考えると T が大きければ何もする必要はないし, 時を戻すときも N+M-1 以上時を戻す必要もない. # そう思うと, 時間の初期値を200として, 時間を400までもつ. # -> 時間は 0 より戻れないし, 400 より進めない. でもそれでいい. # その間で, (時間, 位置) の拡張 dijkstra 法を行うとよい. # O((N+M)NM log(NM)) になる. # C は代わりに C-1 とみなすことに注意する!! # よく考えると、時間の初期値 0, 時間最大値 180 でよい. import heapq n, m, k, t = map(int,input().split()) ikeru = [[[] for j in range(m)] for i in range(n)] for i in range(n): for j in range(m): for x, y in [(-1, 0), (1, 0), (0, 1), (0, -1)]: if 0 <= i + x < n and 0 <= j + y < m: ikeru[i][j].append((i + x, j + y)) 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 = 180 d = [10 ** 18] * n * m * tmax d[0] = 0 pq = [(-d[0], 0)] r1 = m * tmax while pq: tmp, nowv = heapq.heappop(pq) fnv = nowv nowt = nowv % tmax nowv //= tmax b = nowv % m a = nowv // m tmp = -tmp if tmp > d[fnv]: continue for x, y in ikeru[a][b]: 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 > t: continue ans = min(ans, d[(n-1)*r1 + (m-1)*tmax + ts]) if ans == 10 ** 18: print(-1) else: print(ans)