結果

問題 No.1817 Reversed Edges
ユーザー ripityripity
提出日時 2022-01-21 21:57:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,176 ms / 2,000 ms
コード長 2,161 bytes
コンパイル時間 2,338 ms
コンパイル使用メモリ 80,000 KB
実行使用メモリ 87,160 KB
最終ジャッジ日時 2024-05-04 12:48:57
合計ジャッジ時間 22,096 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
52,916 KB
testcase_01 AC 111 ms
54,084 KB
testcase_02 AC 100 ms
52,912 KB
testcase_03 AC 111 ms
54,052 KB
testcase_04 AC 108 ms
53,748 KB
testcase_05 AC 111 ms
54,092 KB
testcase_06 AC 102 ms
52,984 KB
testcase_07 AC 1,091 ms
83,608 KB
testcase_08 AC 634 ms
63,880 KB
testcase_09 AC 1,005 ms
83,484 KB
testcase_10 AC 696 ms
68,020 KB
testcase_11 AC 789 ms
73,492 KB
testcase_12 AC 1,118 ms
85,752 KB
testcase_13 AC 1,131 ms
85,716 KB
testcase_14 AC 1,159 ms
85,660 KB
testcase_15 AC 1,024 ms
85,780 KB
testcase_16 AC 1,176 ms
86,620 KB
testcase_17 AC 1,118 ms
85,404 KB
testcase_18 AC 1,142 ms
86,056 KB
testcase_19 AC 1,136 ms
84,936 KB
testcase_20 AC 1,130 ms
86,008 KB
testcase_21 AC 1,012 ms
87,160 KB
testcase_22 AC 769 ms
85,832 KB
testcase_23 AC 838 ms
84,452 KB
testcase_24 AC 799 ms
85,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    
    public static Scanner sc = new Scanner(System.in);
    public static PrintWriter pw = new PrintWriter(System.out);
    
    public static void main(String[] args) {
        
        int T = 1;
        while( T > 0 ) {
            solve();
            T--;
        }
        
        pw.flush();
        
    }
    
    static void solve() {
        
        int N = sc.nextInt();
        int[] dx = new int[N];
        int[] dy = new int[N];
        boolean[] vx = new boolean[N];
        boolean[] vy = new boolean[N];
        int offset = 0;
        LinkedList<Integer> deque = new LinkedList<>();
        ArrayList<ArrayList<Integer>> edge = new ArrayList<>();
        for( int i = 0; i < N; i++ ) {
            edge.add(new ArrayList<>());
            dx[i] = dy[i] = Integer.MAX_VALUE;
        }
        
        for( int i = 0; i < N-1; i++ ) {
            int a = sc.nextInt()-1;
            int b = sc.nextInt()-1;
            edge.get(a).add(b);
            edge.get(b).add(a);
        }
        
        dx[0] = dy[0] = 0;
        deque.offer(0);
        while( !deque.isEmpty() ) {
            int now = deque.poll();
            if( vx[now] ) continue;
            vx[now] = true;
            for( int next : edge.get(now) ) {
                if( !vx[next] && dx[now]+1 < dx[next] ) {
                    dx[next] = dx[now]+1;
                    deque.offer(next);
                }
            }
        }
        
        deque.offer(0);
        while( !deque.isEmpty() ) {
            int now = deque.poll();
            if( vy[now] ) continue;
            vy[now] = true;
            for( int next : edge.get(now) ) {
                int k = now > next ? 1 : 0;
                if( !vy[next] && dy[now]+k < dy[next] ) {
                    offset += k;
                    dy[next] = dy[now]+k;
                    deque.offer(next);
                }
            }
        }
        
        // pw.println(offset);
        for( int i = 0; i < N; i++ ) {
            // pw.println(dx[i]+" "+dy[i]);
            pw.println(offset+dx[i]-2*dy[i]);
        }
        
    }
    
}
0