結果
問題 | No.2366 登校 |
ユーザー | 👑 hos.lyric |
提出日時 | 2023-06-30 23:19:53 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 2,116 ms / 4,000 ms |
コード長 | 3,120 bytes |
コンパイル時間 | 1,240 ms |
コンパイル使用メモリ | 137,216 KB |
実行使用メモリ | 29,312 KB |
最終ジャッジ日時 | 2024-06-12 07:52:55 |
合計ジャッジ時間 | 13,337 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 632 ms
15,200 KB |
testcase_13 | AC | 607 ms
15,204 KB |
testcase_14 | AC | 607 ms
15,200 KB |
testcase_15 | AC | 615 ms
15,348 KB |
testcase_16 | AC | 610 ms
15,196 KB |
testcase_17 | AC | 612 ms
15,232 KB |
testcase_18 | AC | 605 ms
15,336 KB |
testcase_19 | AC | 604 ms
15,328 KB |
testcase_20 | AC | 614 ms
15,276 KB |
testcase_21 | AC | 611 ms
15,204 KB |
testcase_22 | AC | 495 ms
15,088 KB |
testcase_23 | AC | 317 ms
29,184 KB |
testcase_24 | AC | 322 ms
29,312 KB |
testcase_25 | AC | 2,116 ms
29,312 KB |
testcase_26 | AC | 2,088 ms
29,312 KB |
ソースコード
import std.conv, std.functional, std.range, std.stdio, std.string; import std.algorithm, std.array, std.bigint, std.bitmanip, std.complex, std.container, std.math, std.mathspecial, std.numeric, std.regex, std.typecons; import core.bitop; class EOFException : Throwable { this() { super("EOF"); } } string[] tokens; string readToken() { for (; tokens.empty; ) { if (stdin.eof) { throw new EOFException; } tokens = readln.split; } auto token = tokens.front; tokens.popFront; return token; } int readInt() { return readToken.to!int; } long readLong() { return readToken.to!long; } bool chmin(T)(ref T t, in T f) { if (t > f) { t = f; return true; } else { return false; } } bool chmax(T)(ref T t, in T f) { if (t < f) { t = f; return true; } else { return false; } } int binarySearch(alias pred, T)(in T[] as) { int lo = -1, hi = cast(int)(as.length); for (; lo + 1 < hi; ) { const mid = (lo + hi) >> 1; (unaryFun!pred(as[mid]) ? hi : lo) = mid; } return hi; } int lowerBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a >= val)); } int upperBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a > val)); } enum INF = 10L^^18; enum DX = [+1, 0, -1, 0]; enum DY = [0, +1, 0, -1]; void main() { try { for (; ; ) { const M = readInt; const N = readInt; const K = readInt; const T = readLong; auto A = new int[K]; auto B = new int[K]; auto C = new int[K]; auto D = new long[K]; foreach (k; 0 .. K) { A[k] = readInt - 1; B[k] = readInt - 1; C[k] = readInt; D[k] = readLong; } auto ids = new int[][](M, N); foreach (x; 0 .. M) ids[x][] = -1; foreach (k; 0 .. K) { ids[A[k]][B[k]] = k; } const limT = 2 * (M + N) + 5; alias Entry = Tuple!(long, "c", int, "x", int, "y", int, "t"); BinaryHeap!(Array!Entry, "a.c > b.c") que; auto dist = new long[][][](M, N, limT); foreach (x; 0 .. M) foreach (y; 0 .. N) dist[x][y][] = INF; dist[0][0][M + N] = 0; que.insert(Entry(0, 0, 0, M + N)); for (; !que.empty; ) { const c = que.front.c; const x = que.front.x; const y = que.front.y; const t = que.front.t; que.removeFront; if (dist[x][y][t] == c) { void update(long cc, int xx, int yy, int tt) { chmax(tt, 0); if (tt < limT) { if (chmin(dist[xx][yy][tt], cc)) { que.insert(Entry(cc, xx, yy, tt)); } } } foreach (dir; 0 .. 4) { const xx = x + DX[dir]; const yy = y + DY[dir]; if (0 <= xx && xx < M && 0 <= yy && yy < N) { update(c, xx, yy, t + 1); } } const k = ids[x][y]; if (~k) { update(c + D[k], x, y, t - C[k] + 1); } } } long ans = INF; foreach (t; 0 .. limT) if (t <= M + N + T) { chmin(ans, dist[M - 1][N - 1][t]); } writeln((ans >= INF) ? -1 : ans); } } catch (EOFException e) { } }