結果
問題 | No.417 チューリップバブル |
ユーザー | nebukuro09 |
提出日時 | 2017-05-30 22:50:20 |
言語 | D (dmd 2.106.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,398 bytes |
コンパイル時間 | 1,048 ms |
コンパイル使用メモリ | 123,860 KB |
実行使用メモリ | 13,756 KB |
最終ジャッジ日時 | 2024-06-12 19:33:25 |
合計ジャッジ時間 | 29,490 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
13,756 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | WA | - |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | TLE | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 1 ms
6,944 KB |
testcase_25 | TLE | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 1 ms
6,940 KB |
testcase_33 | AC | 48 ms
6,944 KB |
testcase_34 | WA | - |
testcase_35 | TLE | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
ソースコード
import std.stdio, std.array, std.string, std.conv, std.algorithm; import std.typecons, std.range, std.random, std.math, std.container; import std.numeric, std.bigint, core.bitop; alias Tuple!(int, "to", int, "cost") Edge; void main() { auto s = readln.split.map!(to!int); auto N = s[0]; auto M = s[1]; auto U = N.iota.map!(_ => readln.chomp.to!int).array; auto edges = new Edge[][](N); foreach (i; 0..N-1) { s = readln.split.map!(to!int); edges[s[0]] ~= Edge(s[1], s[2]); edges[s[1]] ~= Edge(s[0], s[2]); } auto dp = new int[][](N, M + 1); void dfs(int n, int prev) { foreach (m; edges[n]) if (m.to != prev) dfs(m.to, n); auto tmp = new int[][](2, M + 1); int cur = 0; int tar = 1; foreach (m; edges[n]) { if (m.to == prev) continue; foreach (i; 0..M+1) { int ii = i + m.cost * 2; foreach (j; 0..M+1) { if (ii + j > M) break; tmp[tar][ii+j] = max(tmp[tar][ii+j], dp[m.to][i] + tmp[cur][j]); } } fill(tmp[cur], 0); cur ^= 1; tar ^= 1; } foreach (i; 0..M+1) dp[n][i] = tmp[cur][i] + U[n]; } dfs(0, -1); dp[0].reduce!max.writeln; }