結果
問題 | No.1098 LCAs |
ユーザー | Oland |
提出日時 | 2020-06-26 22:35:28 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 1,872 ms / 2,000 ms |
コード長 | 6,230 bytes |
コンパイル時間 | 2,479 ms |
コンパイル使用メモリ | 91,320 KB |
実行使用メモリ | 103,328 KB |
最終ジャッジ日時 | 2024-07-04 22:20:48 |
合計ジャッジ時間 | 17,197 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 60 ms
37,412 KB |
testcase_01 | AC | 60 ms
37,748 KB |
testcase_02 | AC | 59 ms
37,712 KB |
testcase_03 | AC | 60 ms
37,744 KB |
testcase_04 | AC | 58 ms
37,944 KB |
testcase_05 | AC | 61 ms
37,616 KB |
testcase_06 | AC | 59 ms
37,784 KB |
testcase_07 | AC | 62 ms
37,596 KB |
testcase_08 | AC | 62 ms
37,920 KB |
testcase_09 | AC | 62 ms
37,728 KB |
testcase_10 | AC | 64 ms
37,768 KB |
testcase_11 | AC | 62 ms
38,032 KB |
testcase_12 | AC | 63 ms
38,100 KB |
testcase_13 | AC | 84 ms
39,120 KB |
testcase_14 | AC | 97 ms
39,420 KB |
testcase_15 | AC | 96 ms
39,152 KB |
testcase_16 | AC | 96 ms
39,160 KB |
testcase_17 | AC | 97 ms
39,324 KB |
testcase_18 | AC | 761 ms
74,744 KB |
testcase_19 | AC | 646 ms
82,524 KB |
testcase_20 | AC | 668 ms
80,292 KB |
testcase_21 | AC | 687 ms
80,256 KB |
testcase_22 | AC | 659 ms
80,456 KB |
testcase_23 | AC | 608 ms
83,436 KB |
testcase_24 | AC | 638 ms
83,780 KB |
testcase_25 | AC | 570 ms
82,592 KB |
testcase_26 | AC | 646 ms
85,856 KB |
testcase_27 | AC | 654 ms
85,876 KB |
testcase_28 | AC | 1,790 ms
103,328 KB |
testcase_29 | AC | 1,872 ms
102,796 KB |
testcase_30 | AC | 925 ms
94,072 KB |
ソースコード
import java.io.*; import java.util.*; @SuppressWarnings("unused") public class Main implements Runnable{ FastScanner in; PrintWriter out; final static int MOD = (int)1e9+7; int N; ArrayList<ArrayList<Integer>> g; int[] num; long[] ans; void solve(){ N = in.nextInt(); g = new ArrayList<>(); for(int i = 0; i < N; i++) g.add(new ArrayList<>()); for(int i = 0; i < N - 1; i++){ int v = in.nextInt()-1; int w = in.nextInt()-1; g.get(v).add(w); g.get(w).add(v); } num = new int[N]; ans = new long[N]; dfs(0, -1); for(long a : ans) out.println(a); } void dfs(int v, int p){ for(int to : g.get(v)){ if(to == p) continue; dfs(to, v); num[v] += num[to] + 1; } ans[v] = 1 + num[v] * 2 + (long)num[v] * (num[v] - 1); for(int to : g.get(v)){ if(to == p) continue; ans[v] -= (long)(num[to] + 1) * num[to]; } } public static void main(String[] args) { Thread.setDefaultUncaughtExceptionHandler((t,e)->System.exit(1)); new Thread(null, new Main(), "", 256L * 1024 * 1024).start(); } public void run() { in = new FastScanner(System.in); out = new PrintWriter(System.out); solve(); out.flush(); } static class FastScanner { Reader input; FastScanner() {this(System.in);} FastScanner(InputStream stream) {this.input = new BufferedReader(new InputStreamReader(stream));} int nextInt() {return (int) nextLong();} long nextLong() { try { int sign = 1; int b = input.read(); while ((b < '0' || '9' < b) && b != '-' && b != '+') { b = input.read(); } if (b == '-') { sign = -1; b = input.read(); } else if (b == '+') { b = input.read(); } long ret = b - '0'; while (true) { b = input.read(); if (b < '0' || '9' < b) return ret * sign; ret *= 10; ret += b - '0'; } } catch (IOException e) { e.printStackTrace(); return -1; } } double nextDouble() { try { double sign = 1; int b = input.read(); while ((b < '0' || '9' < b) && b != '-' && b != '+') { b = input.read(); } if (b == '-') { sign = -1; b = input.read(); } else if (b == '+') { b = input.read(); } double ret = b - '0'; while (true) { b = input.read(); if (b < '0' || '9' < b) break; ret *= 10; ret += b - '0'; } if (b != '.') return sign * ret; double div = 1; b = input.read(); while ('0' <= b && b <= '9') { ret *= 10; ret += b - '0'; div *= 10; b = input.read(); } return sign * ret / div; } catch (IOException e) { e.printStackTrace(); return Double.NaN; } } char nextChar() { try { int b = input.read(); while (Character.isWhitespace(b)) { b = input.read(); } return (char) b; } catch (IOException e) { e.printStackTrace(); return 0; } } String nextStr() { try { StringBuilder sb = new StringBuilder(); int b = input.read(); while (Character.isWhitespace(b)) { b = input.read(); } while (b != -1 && !Character.isWhitespace(b)) { sb.append((char) b); b = input.read(); } return sb.toString(); } catch (IOException e) { e.printStackTrace(); return ""; } } public int[] nextIntArray(int n) { int[] res = new int[n]; for (int i = 0; i < n; i++) { res[i] = nextInt(); } return res; } public int[] nextIntArrayDec(int n) { int[] res = new int[n]; for (int i = 0; i < n; i++) { res[i] = nextInt() - 1; } return res; } public int[] nextIntArray1Index(int n) { int[] res = new int[n + 1]; for (int i = 0; i < n; i++) { res[i + 1] = nextInt(); } return res; } public long[] nextLongArray(int n) { long[] res = new long[n]; for (int i = 0; i < n; i++) { res[i] = nextLong(); } return res; } public long[] nextLongArrayDec(int n) { long[] res = new long[n]; for (int i = 0; i < n; i++) { res[i] = nextLong() - 1; } return res; } public long[] nextLongArray1Index(int n) { long[] res = new long[n + 1]; for (int i = 0; i < n; i++) { res[i + 1] = nextLong(); } return res; } public double[] nextDoubleArray(int n) { double[] res = new double[n]; for (int i = 0; i < n; i++) { res[i] = nextDouble(); } return res; } } }