結果
問題 | No.1174 盆栽の剪定 |
ユーザー | 👑 hos.lyric |
提出日時 | 2020-08-23 21:21:00 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 75 ms / 2,000 ms |
コード長 | 2,088 bytes |
コンパイル時間 | 887 ms |
コンパイル使用メモリ | 122,576 KB |
実行使用メモリ | 38,692 KB |
最終ジャッジ日時 | 2024-06-22 08:19:11 |
合計ジャッジ時間 | 3,291 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,948 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 1 ms
6,940 KB |
testcase_13 | AC | 1 ms
6,940 KB |
testcase_14 | AC | 1 ms
6,944 KB |
testcase_15 | AC | 1 ms
6,944 KB |
testcase_16 | AC | 1 ms
6,940 KB |
testcase_17 | AC | 1 ms
6,940 KB |
testcase_18 | AC | 1 ms
6,940 KB |
testcase_19 | AC | 75 ms
38,520 KB |
testcase_20 | AC | 60 ms
38,508 KB |
testcase_21 | AC | 10 ms
9,156 KB |
testcase_22 | AC | 69 ms
38,692 KB |
testcase_23 | AC | 64 ms
38,544 KB |
testcase_24 | AC | 66 ms
34,724 KB |
testcase_25 | AC | 44 ms
21,604 KB |
testcase_26 | AC | 56 ms
29,404 KB |
testcase_27 | AC | 41 ms
20,764 KB |
testcase_28 | AC | 63 ms
31,556 KB |
testcase_29 | AC | 39 ms
19,844 KB |
testcase_30 | AC | 69 ms
36,004 KB |
testcase_31 | AC | 38 ms
19,968 KB |
testcase_32 | AC | 36 ms
19,032 KB |
testcase_33 | AC | 45 ms
23,400 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; } 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)); } void main() { try { for (; ; ) { const N = readInt(); auto A = new long[N + 1]; foreach (u; 1 .. N + 1) { A[u] = readLong(); } auto dep = new int[N + 1]; dep[1] = 0; foreach (u; 2 .. N + 1) { dep[u] = dep[u >> 1] + 1; } auto dp = new long[][N + 1]; foreach_reverse (u; 1 .. N + 1) { const uL = u << 1; const uR = u << 1 | 1; dp[u] = new long[dep[u] + 1 + dep[u]]; foreach (k; -dep[u] .. +dep[u] + 1) { foreach (s; [+1, -1]) { long cost = k * A[u]; if (uL <= N) { cost += dp[uL][dep[uL] + k + s]; } if (uR <= N) { cost += dp[uR][dep[uR] + k - s]; } chmax(dp[u][dep[u] + k], cost); } } } writeln(dp[1][0]); } } catch (EOFException e) { } }