結果
問題 | No.913 木の燃やし方 |
ユーザー | 👑 hos.lyric |
提出日時 | 2019-10-19 01:55:49 |
言語 | D (dmd 2.106.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,231 bytes |
コンパイル時間 | 919 ms |
コンパイル使用メモリ | 123,524 KB |
実行使用メモリ | 42,660 KB |
最終ジャッジ日時 | 2024-06-22 02:53:14 |
合計ジャッジ時間 | 8,877 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 182 ms
21,000 KB |
testcase_14 | AC | 173 ms
20,208 KB |
testcase_15 | AC | 173 ms
20,980 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 168 ms
42,012 KB |
testcase_20 | AC | 162 ms
42,484 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 146 ms
30,072 KB |
testcase_25 | AC | 137 ms
30,120 KB |
testcase_26 | AC | 175 ms
42,660 KB |
testcase_27 | AC | 192 ms
20,848 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
ソースコード
import std.conv, std.functional, std.range, std.stdio, std.string; import std.algorithm, std.array, std.bigint, std.complex, std.container, std.math, 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; } real readReal() { return readToken.to!real; } 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; int N; long[] A; long[] ASum; long[] ans; /* ((j - i)^2 + (ASum[j] - ASum[i])) = (i^2 - ASum[i]) + min_j ((j^2 + ASum[j]) + (-2 j) i) = (j^2 + ASum[j]) + min_i ((i^2 - ASum[i]) + (2 i) (-j)) */ void solve(int l, int r) { if (l >= r) { return; } // l <= i <= mid, mid + 1 <= j <= r const mid = (l + r) / 2; solve(l, mid); solve(mid + 1, r); // [1]: decreasing auto q = new Tuple!(long, long)[max(mid - l + 1, r - mid + 1)]; int qb, qe; long mn; qb = qe = 0; foreach (j; mid + 1 .. r + 1) { const t = tuple(1L * j * j + ASum[j], -2L * j); for (; qe - qb >= 2 && (q[qe - 1][0] - q[qe - 2][0]) * -(t[1] - q[qe - 2][1]) >= (t[0] - q[qe - 2][0]) * -(q[qe - 1][1] - q[qe - 0][1]); --qe) {} q[qe++] = t; } mn = INF; foreach (i; l .. mid + 1) { for (; qe - qb >= 2 && (q[qb][0] + q[qb][1] * i >= q[qb + 1][0] + q[qb + 1][1] * i); ++qb) {} const tmp = 1L * i * i - ASum[i] + (q[qb][0] + q[qb][1] * i); debug { writefln("i = %s, mid = %s, r = %s: %s", i, mid, r, tmp); } chmin(mn, tmp); chmin(ans[i], mn); } qb = qe = 0; foreach (i; l .. mid + 1) { const t = tuple(1L * i * i - ASum[i], 2L * i); for (; qe - qb >= 2 && (q[qe - 1][0] - q[qe - 2][0]) * -(t[1] - q[qe - 2][1]) >= (t[0] - q[qe - 2][0]) * -(q[qe - 1][1] - q[qe - 0][1]); --qe) {} q[qe++] = t; } mn = INF; foreach_reverse (j; mid + 1 .. r + 1) { for (; qe - qb >= 2 && (q[qb][0] + q[qb][1] * (-j) >= q[qb + 1][0] + q[qb + 1][1] * (-j)); ++qb) {} const tmp = 1L * j * j + ASum[j] + (q[qb][0] + q[qb][1] * (-j)); chmin(mn, tmp); chmin(ans[j - 1], mn); } } void main() { try { for (; ; ) { N = readInt(); A = new long[N]; foreach (i; 0 .. N) { A[i] = readLong(); } ASum = new long[N + 1]; foreach (i; 0 .. N) { ASum[i + 1] = ASum[i] + A[i]; } ans = new long[N]; ans[] = INF; solve(0, N); foreach (i; 0 .. N) { writeln(ans[i]); } } } catch (EOFException e) { } }