結果

問題 No.1103 Directed Length Sum
ユーザー 37zigen37zigen
提出日時 2020-08-07 18:54:12
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 3,401 bytes
コンパイル時間 4,665 ms
コンパイル使用メモリ 79,096 KB
実行使用メモリ 262,536 KB
最終ジャッジ日時 2023-10-24 20:50:32
合計ジャッジ時間 33,911 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
36,304 KB
testcase_01 AC 48 ms
36,344 KB
testcase_02 AC 1,437 ms
262,536 KB
testcase_03 AC 1,324 ms
232,260 KB
testcase_04 AC 1,670 ms
170,520 KB
testcase_05 TLE -
testcase_06 AC 1,232 ms
122,380 KB
testcase_07 AC 404 ms
72,968 KB
testcase_08 AC 535 ms
70,004 KB
testcase_09 AC 270 ms
53,696 KB
testcase_10 AC 731 ms
84,760 KB
testcase_11 AC 1,745 ms
163,484 KB
testcase_12 AC 1,124 ms
111,792 KB
testcase_13 AC 741 ms
88,772 KB
testcase_14 AC 204 ms
63,920 KB
testcase_15 AC 893 ms
117,424 KB
testcase_16 AC 1,931 ms
197,988 KB
testcase_17 AC 1,878 ms
201,220 KB
testcase_18 AC 651 ms
90,044 KB
testcase_19 AC 1,721 ms
179,012 KB
testcase_20 AC 294 ms
68,644 KB
testcase_21 AC 442 ms
68,332 KB
testcase_22 AC 1,470 ms
153,348 KB
testcase_23 AC 873 ms
119,640 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