結果

問題 No.1103 Directed Length Sum
ユーザー 37zigen37zigen
提出日時 2020-07-03 23:26:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,790 ms / 3,000 ms
コード長 3,401 bytes
コンパイル時間 2,504 ms
コンパイル使用メモリ 79,464 KB
実行使用メモリ 268,036 KB
最終ジャッジ日時 2024-09-17 05:02:15
合計ジャッジ時間 28,566 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,700 KB
testcase_01 AC 52 ms
36,536 KB
testcase_02 AC 1,319 ms
264,132 KB
testcase_03 AC 1,084 ms
228,900 KB
testcase_04 AC 1,501 ms
161,680 KB
testcase_05 AC 2,790 ms
268,036 KB
testcase_06 AC 1,142 ms
111,336 KB
testcase_07 AC 418 ms
62,592 KB
testcase_08 AC 488 ms
69,924 KB
testcase_09 AC 273 ms
53,956 KB
testcase_10 AC 709 ms
84,452 KB
testcase_11 AC 1,601 ms
163,372 KB
testcase_12 AC 1,107 ms
111,952 KB
testcase_13 AC 806 ms
85,328 KB
testcase_14 AC 213 ms
49,756 KB
testcase_15 AC 861 ms
104,032 KB
testcase_16 AC 1,909 ms
185,424 KB
testcase_17 AC 1,869 ms
188,208 KB
testcase_18 AC 715 ms
75,128 KB
testcase_19 AC 1,717 ms
179,288 KB
testcase_20 AC 345 ms
56,224 KB
testcase_21 AC 488 ms
68,544 KB
testcase_22 AC 1,509 ms
153,192 KB
testcase_23 AC 883 ms
106,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayDeque;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.NoSuchElementException;

class FastScanner {
    private final InputStream in = System.in;
    private final byte[] buffer = new byte[1024];
    private int ptr = 0;
    private int buflen = 0;
    private boolean hasNextByte() {
        if (ptr < buflen) {
            return true;
        }else{
            ptr = 0;
            try {
                buflen = in.read(buffer);
            } catch (IOException e) {
                e.printStackTrace();
            }
            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 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 class Main {

	public static void main(String[] args) {
		long curtime=System.currentTimeMillis();
		new Main().run();
		System.err.println(System.currentTimeMillis()-curtime);
	}
	
	final long MOD=(long)1e9+7;

	void run() {
		FastScanner sc=new FastScanner();
		int N=(int)sc.nextLong();
		ArrayList<Integer>[] g=new ArrayList[N];
		for (int i=0;i<N;++i) g[i]=new ArrayList<>();
		boolean[] isroot=new boolean[N];
		Arrays.fill(isroot, true);
		for (int i=0;i<N-1;++i) {
			int a=(int)sc.nextLong();
			int b=(int)sc.nextLong();
			--a;--b;
			g[a].add(b);
			g[b].add(a);
			isroot[b]=false;
		}
		int root=-1;
		for (int i=0;i<N;++i) if (isroot[i]) root=i;
	
		ArrayList<Integer> order=new ArrayList<>();
		ArrayDeque<Integer> stack=new ArrayDeque<>();
		int[] d=new int[N];
		int[] sz=new int[N];
		stack.addFirst(root);
		while (!stack.isEmpty()) {
			int v=stack.pollFirst();
			order.add(v);
			for (int dst:g[v]) {
				g[dst].remove((Integer)v);
				d[dst]=d[v]+1;
				stack.addFirst(dst);
			}
		}
		
		long ans=0;
		for (int i=order.size()-1;i>=0;--i) {
			int v=order.get(i);
			sz[v]=1;
			for (int dst:g[v]) sz[v]+=sz[dst];
			ans+=(long)d[v]*sz[v]%MOD;
			if (ans>=MOD) ans-=MOD;
			
		}
		System.out.println(ans);
		
	}
	
	
	
	void tr(Object...objects) {System.out.println(Arrays.deepToString(objects));}
}

0