結果
問題 | No.417 チューリップバブル |
ユーザー | 37zigen |
提出日時 | 2016-08-14 00:54:09 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 1,083 ms / 2,000 ms |
コード長 | 4,594 bytes |
コンパイル時間 | 5,132 ms |
コンパイル使用メモリ | 81,444 KB |
実行使用メモリ | 46,428 KB |
最終ジャッジ日時 | 2024-11-07 17:49:35 |
合計ジャッジ時間 | 22,151 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 50 ms
37,092 KB |
testcase_01 | AC | 49 ms
37,216 KB |
testcase_02 | AC | 49 ms
37,088 KB |
testcase_03 | AC | 49 ms
36,556 KB |
testcase_04 | AC | 48 ms
36,424 KB |
testcase_05 | AC | 48 ms
36,696 KB |
testcase_06 | AC | 50 ms
36,960 KB |
testcase_07 | AC | 52 ms
36,748 KB |
testcase_08 | AC | 114 ms
39,784 KB |
testcase_09 | AC | 260 ms
42,392 KB |
testcase_10 | AC | 238 ms
42,060 KB |
testcase_11 | AC | 431 ms
43,276 KB |
testcase_12 | AC | 435 ms
43,156 KB |
testcase_13 | AC | 232 ms
42,172 KB |
testcase_14 | AC | 554 ms
43,632 KB |
testcase_15 | AC | 219 ms
41,836 KB |
testcase_16 | AC | 242 ms
42,340 KB |
testcase_17 | AC | 296 ms
43,248 KB |
testcase_18 | AC | 399 ms
43,792 KB |
testcase_19 | AC | 302 ms
43,408 KB |
testcase_20 | AC | 663 ms
41,996 KB |
testcase_21 | AC | 741 ms
45,032 KB |
testcase_22 | AC | 567 ms
41,912 KB |
testcase_23 | AC | 658 ms
41,816 KB |
testcase_24 | AC | 54 ms
36,820 KB |
testcase_25 | AC | 554 ms
42,040 KB |
testcase_26 | AC | 267 ms
43,000 KB |
testcase_27 | AC | 463 ms
41,436 KB |
testcase_28 | AC | 674 ms
44,560 KB |
testcase_29 | AC | 567 ms
42,096 KB |
testcase_30 | AC | 697 ms
45,024 KB |
testcase_31 | AC | 854 ms
45,276 KB |
testcase_32 | AC | 71 ms
38,028 KB |
testcase_33 | AC | 166 ms
40,976 KB |
testcase_34 | AC | 351 ms
42,360 KB |
testcase_35 | AC | 1,083 ms
43,268 KB |
testcase_36 | AC | 1,060 ms
46,428 KB |
testcase_37 | AC | 878 ms
43,652 KB |
testcase_38 | AC | 915 ms
43,184 KB |
testcase_39 | AC | 958 ms
43,340 KB |
ソースコード
import java.io.ByteArrayInputStream; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.util.ArrayList; import java.util.Arrays; public class チューリップバブル { static InputStream is; static PrintWriter out; static String INPUT = ""; class Pair { long u; int t; Pair(long u, int t) { this.u = u; this.t = t; } } void solver() { int n = ni();// 村の数 int m = ni();// 残り時間 long[] u = new long[n]; for (int i = 0; i < n; i++) { u[i] = nl();// 税収 } ArrayList<Edge>[] e = new ArrayList[n]; for (int i = 0; i < n; i++) { e[i] = new ArrayList<>(); } for (int i = 0; i < n - 1; i++) { int a = ni(); int b = ni(); int c = ni(); e[a].add(new Edge(c, a, b)); e[b].add(new Edge(c, b, a)); } long[] list = dfs(-1, 0, e, u, m); long ans = 0; for (int i = 0; i <= m; i++) { ans = Math.max(ans, list[i]); } out.println(ans); } long[] dfs(int p, int cur, ArrayList<Edge>[] e, long[] u, int m) { if (m < 0) { return new long[0]; } long[] now = new long[m + 1]; Arrays.fill(now, -1); now[0] = u[cur]; for (int i = 0; i < e[cur].size(); i++) { Edge v = e[cur].get(i); if (v.to != p) { long[] d = dfs(cur, v.to, e, u, m - 2 * v.time); long[] next = Arrays.copyOf(now, now.length); for (int j = 0; j <= m; j++) { for (int k = 0; k <= m; k++) { if (2 * v.time + j + k <= m && d[j] != -1 && now[k] != -1) { if (next[2 * v.time + j + k] < d[j] + now[k]) { next[2 * v.time + j + k] = d[j] + now[k]; } } } } now = next; } } return now; } static class Edge { int time; int from; int to; Edge(int time, int from, int to) { this.time = time; this.from = from; this.to = to; } } public static void main(String[] args) throws Exception { is = INPUT.isEmpty() ? System.in : new ByteArrayInputStream(INPUT.getBytes()); out = new PrintWriter(System.out); long t = System.currentTimeMillis(); new チューリップバブル().solver(); System.err.println(System.currentTimeMillis() - t); out.flush(); } static void tr(Object... o) { System.out.println(Arrays.deepToString(o)); } static long nl() { try { long num = 0; boolean minus = false; while ((num = is.read()) != -1 && !((num >= '0' && num <= '9') || num == '-')) ; if (num == '-') { num = 0; minus = true; } else { num -= '0'; } while (true) { int b = is.read(); if (b >= '0' && b <= '9') { num = num * 10 + (b - '0'); } else { return minus ? -num : num; } } } catch (IOException e) { } return -1; } static char nc() { try { int b = skip(); if (b == -1) return 0; return (char) b; } catch (IOException e) { } return 0; } static double nd() { try { return Double.parseDouble(ns()); } catch (Exception e) { } return 0; } static String ns() { try { int b = skip(); StringBuilder sb = new StringBuilder(); if (b == -1) return ""; sb.append((char) b); while (true) { b = is.read(); if (b == -1) return sb.toString(); if (b <= ' ') return sb.toString(); sb.append((char) b); } } catch (IOException e) { } return ""; } public static char[] ns(int n) { char[] buf = new char[n]; try { int b = skip(), p = 0; if (b == -1) return null; buf[p++] = (char) b; while (p < n) { b = is.read(); if (b == -1 || b <= ' ') break; buf[p++] = (char) b; } return Arrays.copyOf(buf, p); } catch (IOException e) { } return null; } public static byte[] nse(int n) { byte[] buf = new byte[n]; try { int b = skip(); if (b == -1) return null; is.read(buf); return buf; } catch (IOException e) { } return null; } static int skip() throws IOException { int b; while ((b = is.read()) != -1 && !(b >= 33 && b <= 126)) ; return b; } static boolean eof() { try { is.mark(1000); int b = skip(); is.reset(); return b == -1; } catch (IOException e) { return true; } } static int ni() { try { int num = 0; boolean minus = false; while ((num = is.read()) != -1 && !((num >= '0' && num <= '9') || num == '-')) ; if (num == '-') { num = 0; minus = true; } else { num -= '0'; } while (true) { int b = is.read(); if (b >= '0' && b <= '9') { num = num * 10 + (b - '0'); } else { return minus ? -num : num; } } } catch (IOException e) { } return -1; } }