結果

問題 No.1103 Directed Length Sum
ユーザー 37zigen37zigen
提出日時 2020-07-03 23:20:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,889 ms / 3,000 ms
コード長 3,619 bytes
コンパイル時間 2,417 ms
コンパイル使用メモリ 79,376 KB
実行使用メモリ 277,148 KB
最終ジャッジ日時 2023-10-17 06:20:47
合計ジャッジ時間 28,686 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
53,260 KB
testcase_01 AC 54 ms
53,272 KB
testcase_02 AC 1,316 ms
277,148 KB
testcase_03 AC 1,091 ms
235,048 KB
testcase_04 AC 1,655 ms
178,264 KB
testcase_05 AC 2,889 ms
274,104 KB
testcase_06 AC 1,188 ms
124,680 KB
testcase_07 AC 396 ms
75,828 KB
testcase_08 AC 541 ms
83,612 KB
testcase_09 AC 292 ms
67,316 KB
testcase_10 AC 727 ms
94,508 KB
testcase_11 AC 1,649 ms
180,268 KB
testcase_12 AC 1,097 ms
126,512 KB
testcase_13 AC 690 ms
102,124 KB
testcase_14 AC 231 ms
63,732 KB
testcase_15 AC 941 ms
118,848 KB
testcase_16 AC 1,924 ms
198,592 KB
testcase_17 AC 1,914 ms
202,832 KB
testcase_18 AC 689 ms
90,632 KB
testcase_19 AC 1,765 ms
192,848 KB
testcase_20 AC 343 ms
69,112 KB
testcase_21 AC 463 ms
83,236 KB
testcase_22 AC 1,522 ms
171,000 KB
testcase_23 AC 959 ms
120,708 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;
	
	long ans=0;
	
	ArrayList<Integer>[] g;

	//	int dfs(int cur,int par,int d) {
//		int sz=1;		
//		for (int dst:g[cur]) {
//			if (dst==par) continue;
//			sz+=dfs(dst,cur,d+1);
//		}
//		ans+=d*sz%MOD;
//		if (ans>=MOD) ans-=MOD;
//		return sz;
//	}
	
	void run() {
		FastScanner sc=new FastScanner();
		int N=(int)sc.nextLong();
		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);
			}
		}
		
		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