結果
問題 | No.2638 Initial fare |
ユーザー | tenten |
提出日時 | 2024-02-26 16:57:13 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,697 bytes |
コンパイル時間 | 7,244 ms |
コンパイル使用メモリ | 91,120 KB |
実行使用メモリ | 51,492 KB |
最終ジャッジ日時 | 2024-09-29 11:39:57 |
合計ジャッジ時間 | 9,123 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 80 ms
51,392 KB |
testcase_01 | AC | 79 ms
51,428 KB |
testcase_02 | AC | 80 ms
51,352 KB |
testcase_03 | AC | 81 ms
51,492 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
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 | -- | - |
ソースコード
import java.io.*; import java.util.*; import java.util.function.*; import java.util.stream.*; public class Main { static int[][] counts; static int[] parents1; static int[] parents2; static long ans = 0; static List<List<Integer>> graph; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); graph = IntStream.range(0, n).mapToObj(ArrayList<Integer>::new) .collect(Collectors.toList()); IntStream.range(0, n - 1).forEach(i -> { int a = sc.nextInt() - 1; int b = sc.nextInt() - 1; graph.get(a).add(b); graph.get(b).add(a); }); parents1 = new int[n]; parents2 = new int[n]; counts = new int[n][4]; setValue(0, -1, -1); setAns(0, 0); System.out.println(ans / 2); } static void setValue(int idx, int p1, int p2) { counts[idx][0] = 1; parents1[idx] = p1; parents2[idx] = p2; graph.get(idx).stream().filter(x -> x != p1).forEach(x -> { setValue(x, idx, p1); for (int i = 1; i <= 3; i++) { counts[idx][i] += counts[x][i - 1]; } }); } static void setAns(int idx, int p) { for (int i = 1; i <= 3; i++) { ans += counts[idx][i]; } if (parents1[idx] >= 0) { ans += counts[parents1[idx]][2] - counts[idx][1]; ans += counts[parents1[idx]][1] - 1; ans++; } if (parents2[idx] >= 0) { ans += counts[parents2[idx]][1] - 1; ans++; if (parents2[idx] != 0) { ans++; } } graph.get(idx).stream().filter(x -> x != p).forEach(x -> setAns(x, idx)); } } class Scanner { BufferedReader br; StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() { try { br = new BufferedReader(new InputStreamReader(System.in)); } catch (Exception e) { } } public int nextInt() { return Integer.parseInt(next()); } public long nextLong() { return Long.parseLong(next()); } public double nextDouble() { return Double.parseDouble(next()); } public String next() { try { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } } catch (Exception e) { e.printStackTrace(); } finally { return st.nextToken(); } } }