結果

問題 No.439 チワワのなる木
ユーザー 37zigen37zigen
提出日時 2020-04-04 16:59:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,112 ms / 5,000 ms
コード長 1,293 bytes
コンパイル時間 2,390 ms
コンパイル使用メモリ 79,916 KB
実行使用メモリ 89,736 KB
最終ジャッジ日時 2024-07-03 07:30:07
合計ジャッジ時間 15,233 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
40,020 KB
testcase_01 AC 124 ms
41,332 KB
testcase_02 AC 126 ms
41,284 KB
testcase_03 AC 124 ms
41,236 KB
testcase_04 AC 121 ms
41,256 KB
testcase_05 AC 121 ms
39,988 KB
testcase_06 AC 125 ms
41,200 KB
testcase_07 AC 109 ms
41,344 KB
testcase_08 AC 130 ms
41,104 KB
testcase_09 AC 129 ms
41,556 KB
testcase_10 AC 140 ms
41,412 KB
testcase_11 AC 121 ms
41,172 KB
testcase_12 AC 132 ms
41,428 KB
testcase_13 AC 171 ms
41,972 KB
testcase_14 AC 179 ms
42,136 KB
testcase_15 AC 188 ms
44,588 KB
testcase_16 AC 206 ms
45,756 KB
testcase_17 AC 190 ms
44,064 KB
testcase_18 AC 887 ms
62,516 KB
testcase_19 AC 896 ms
62,508 KB
testcase_20 AC 1,077 ms
67,952 KB
testcase_21 AC 531 ms
51,952 KB
testcase_22 AC 496 ms
51,216 KB
testcase_23 AC 1,112 ms
70,752 KB
testcase_24 AC 1,081 ms
89,016 KB
testcase_25 AC 1,055 ms
69,408 KB
testcase_26 AC 983 ms
67,464 KB
testcase_27 AC 871 ms
89,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		long curtime=System.currentTimeMillis();
		new Main().run();
		System.err.println(System.currentTimeMillis()-curtime);
	}
	
	long ans=0;
	int totW=0,totC=0;
	
	void dfs(int cur,int par,ArrayList<Integer>[] g,int[] c,int[] w,char[] cs) {
		if(cs[cur]=='c')++c[cur];
		else ++w[cur];
		for(int dst:g[cur]) {
			if(dst==par)continue;
			dfs(dst,cur,g,c,w,cs);
			c[cur]+=c[dst];
			w[cur]+=w[dst];
		}
		if(cs[cur]=='w') {
			for(int dst:g[cur]) {
				if(dst==par)continue;
				ans+=(long)c[dst]*(totW-w[dst]-1);
			}
		}
		if(cs[cur]=='w')ans+=(long)(totC-c[cur])*(w[cur]-1);
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		int N=sc.nextInt();//3<=N<=1e5
		char[] cs=sc.next().toCharArray();
		ArrayList<Integer>[] g=new ArrayList[N];
		for(int i=0;i<g.length;++i)g[i]=new ArrayList<>();
		for(int i=0;i<N-1;++i) {
			int a=sc.nextInt();
			int b=sc.nextInt();
			--a;--b;
			g[a].add(b);
			g[b].add(a);
		} 
		int[] c=new int[N];
		int[] w=new int[N];
		for(char ch:cs)if(ch=='c')++totC; else ++totW;;
		dfs(0,-1,g,c,w,cs);
		System.out.println(ans);
	}
	
	void tr(Object...objects) {System.out.println(Arrays.deepToString(objects));}
}

0