結果

問題 No.1817 Reversed Edges
ユーザー merlinmerlin
提出日時 2022-01-21 22:20:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 643 ms / 2,000 ms
コード長 1,293 bytes
コンパイル時間 2,812 ms
コンパイル使用メモリ 80,556 KB
実行使用メモリ 81,648 KB
最終ジャッジ日時 2024-11-26 00:49:02
合計ジャッジ時間 14,394 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
37,896 KB
testcase_01 AC 66 ms
37,796 KB
testcase_02 AC 67 ms
37,436 KB
testcase_03 AC 64 ms
37,868 KB
testcase_04 AC 62 ms
37,836 KB
testcase_05 AC 64 ms
37,760 KB
testcase_06 AC 67 ms
37,796 KB
testcase_07 AC 556 ms
61,688 KB
testcase_08 AC 344 ms
52,124 KB
testcase_09 AC 527 ms
59,688 KB
testcase_10 AC 372 ms
52,800 KB
testcase_11 AC 394 ms
54,512 KB
testcase_12 AC 613 ms
63,344 KB
testcase_13 AC 602 ms
62,840 KB
testcase_14 AC 606 ms
64,512 KB
testcase_15 AC 585 ms
63,484 KB
testcase_16 AC 585 ms
63,436 KB
testcase_17 AC 643 ms
63,120 KB
testcase_18 AC 571 ms
63,360 KB
testcase_19 AC 566 ms
63,512 KB
testcase_20 AC 592 ms
63,436 KB
testcase_21 AC 600 ms
63,748 KB
testcase_22 AC 458 ms
62,492 KB
testcase_23 AC 468 ms
62,732 KB
testcase_24 AC 492 ms
81,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main
{
    public static void main(String args[])throws Exception
    {
        BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));
        StringBuilder sb=new StringBuilder();
        int n=Integer.parseInt(bu.readLine());
        int i,c[]=new int[n],e[]=new int[n];
        ArrayList<Integer> g[]=new ArrayList[n];

        for(i=0;i<n;i++) g[i]=new ArrayList<>();
        for(i=0;i<n-1;i++)
        {
            String s[]=bu.readLine().split(" ");
            int u=Integer.parseInt(s[0])-1,v=Integer.parseInt(s[1])-1;
            g[u].add(v);
            g[v].add(u);
        }

        dfs(g,c,0,-1);
        reroot(g,c,e,0,-1);
        for(i=0;i<n;i++) sb.append(c[i]+e[i]+"\n");
        System.out.print(sb);
    }

    static void dfs(ArrayList<Integer> g[],int c[],int n,int p)
    {
        for(int x:g[n])
        if(x!=p)
        {
            dfs(g,c,x,n);
            c[n]+=c[x];
            if(x<n) c[n]++;
        }
    }

    static void reroot(ArrayList<Integer> g[],int c[],int e[],int n,int p)
    {
        for(int x:g[n])
        if(x!=p)
        {
            e[x]=e[n];
            e[x]+=c[n]-c[x];
            if(n>x) e[x]--;
            else e[x]++;
            reroot(g,c,e,x,n);
        }
    }
}
0