結果
問題 | No.417 チューリップバブル |
ユーザー | hiromi_ayase |
提出日時 | 2016-08-27 00:59:19 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 4,522 bytes |
コンパイル時間 | 3,310 ms |
コンパイル使用メモリ | 78,308 KB |
実行使用メモリ | 49,668 KB |
最終ジャッジ日時 | 2024-11-08 18:11:18 |
合計ジャッジ時間 | 6,565 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
41,788 KB |
testcase_01 | AC | 49 ms
36,528 KB |
testcase_02 | AC | 51 ms
36,836 KB |
testcase_03 | AC | 53 ms
36,400 KB |
testcase_04 | AC | 52 ms
36,820 KB |
testcase_05 | AC | 50 ms
36,504 KB |
testcase_06 | AC | 54 ms
36,768 KB |
testcase_07 | AC | 50 ms
36,432 KB |
testcase_08 | TLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
ソースコード
import java.io.IOException; import java.io.InputStream; import java.util.ArrayList; import java.util.List; import java.util.NoSuchElementException; public class Main { public static void main(String[] args) { FastScanner sc = new FastScanner(); int N = sc.nextInt(); int M = sc.nextInt(); long[] U = sc.nextLongList(N); Graph g = new Graph(N + 1); for (int i = 0; i < N - 1; i++) { int A = sc.nextInt(); int B = sc.nextInt(); int C = sc.nextInt(); g.addBoth(A, B, C); } dfs(g, U, new int[N], 0, -1, M, 0); System.out.println(max); } private static long max = 0; public static void dfs(Graph g, long[] U, int[] visited, int now, int before, long last, long u) { visited[now]++; if (visited[now] == 1) { u += U[now]; } if (now == 0) { max = Math.max(max, u); } for (Graph.Path p : g.get(now)) { if (last >= p.cost) { dfs(g, U, visited, p.to, now, last - p.cost, u); } } visited[now]--; } } class Graph { public static class Path implements Comparable<Path> { public final int from; public final int to; public final long cost; public Path(int from, int to, long cost) { this.from = from; this.to = to; this.cost = cost; } @Override public int compareTo(Path o) { return Long.compare(this.cost, o.cost); } } private final List<List<Path>> edgeList; private final int size; public Graph(int n) { this.size = n; this.edgeList = new ArrayList<List<Path>>(); for (int i = 0; i < n; i++) { this.edgeList.add(new ArrayList<Path>()); } } public void add(int from, int to, long cost) { this.edgeList.get(from).add(new Path(from, to, cost)); } public void addBoth(int v1, int v2, long cost) { this.add(v1, v2, cost); this.add(v2, v1, cost); } public void add(int from, int to) { this.edgeList.get(from).add(new Path(from, to, 1)); } public void addBoth(int v1, int v2) { this.add(v1, v2, 1); this.add(v2, v1, 1); } public List<Path> get(int from) { return this.edgeList.get(from); } public int size() { return this.size; } } class FastScanner { public static String debug = null; private final InputStream in = System.in; private int ptr = 0; private int buflen = 0; private byte[] buffer = new byte[1024]; private boolean eos = false; private boolean hasNextByte() { if (ptr < buflen) { return true; } else { ptr = 0; try { if (debug != null) { buflen = debug.length(); buffer = debug.getBytes(); debug = ""; eos = true; } else { buflen = in.read(buffer); } } catch (IOException e) { e.printStackTrace(); } if (buflen < 0) { eos = true; return false; } else if (buflen == 0) { return false; } } return true; } private int readByte() { if (hasNextByte()) return buffer[ptr++]; else return -1; } private static boolean isPrintableChar(int c) { return 33 <= c && c <= 126; } private void skipUnprintable() { while (hasNextByte() && !isPrintableChar(buffer[ptr])) ptr++; } public boolean isEOS() { return this.eos; } public boolean hasNext() { skipUnprintable(); return hasNextByte(); } public String next() { if (!hasNext()) throw new NoSuchElementException(); StringBuilder sb = new StringBuilder(); int b = readByte(); while (isPrintableChar(b)) { sb.appendCodePoint(b); b = readByte(); } return sb.toString(); } public long nextLong() { if (!hasNext()) throw new NoSuchElementException(); long n = 0; boolean minus = false; int b = readByte(); if (b == '-') { minus = true; b = readByte(); } if (b < '0' || '9' < b) { throw new NumberFormatException(); } while (true) { if ('0' <= b && b <= '9') { n *= 10; n += b - '0'; } else if (b == -1 || !isPrintableChar(b)) { return minus ? -n : n; } else { throw new NumberFormatException(); } b = readByte(); } } public int nextInt() { return (int) nextLong(); } public long[] nextLongList(int n) { return nextLongTable(1, n)[0]; } public int[] nextIntList(int n) { return nextIntTable(1, n)[0]; } public long[][] nextLongTable(int n, int m) { long[][] ret = new long[n][m]; for (int i = 0; i < n; i++) { for (int j = 0; j < m; j++) { ret[i][j] = nextLong(); } } return ret; } public int[][] nextIntTable(int n, int m) { int[][] ret = new int[n][m]; for (int i = 0; i < n; i++) { for (int j = 0; j < m; j++) { ret[i][j] = nextInt(); } } return ret; } }