結果

問題 No.439 チワワのなる木
ユーザー 37zigen37zigen
提出日時 2020-04-04 17:07:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,292 ms / 5,000 ms
コード長 1,275 bytes
コンパイル時間 2,691 ms
コンパイル使用メモリ 79,536 KB
実行使用メモリ 91,696 KB
最終ジャッジ日時 2024-07-03 07:32:38
合計ジャッジ時間 16,834 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,308 KB
testcase_01 AC 137 ms
41,232 KB
testcase_02 AC 134 ms
41,432 KB
testcase_03 AC 136 ms
41,544 KB
testcase_04 AC 137 ms
41,436 KB
testcase_05 AC 135 ms
41,476 KB
testcase_06 AC 135 ms
41,376 KB
testcase_07 AC 134 ms
41,144 KB
testcase_08 AC 144 ms
41,556 KB
testcase_09 AC 145 ms
41,552 KB
testcase_10 AC 151 ms
41,508 KB
testcase_11 AC 136 ms
41,444 KB
testcase_12 AC 144 ms
41,388 KB
testcase_13 AC 204 ms
42,588 KB
testcase_14 AC 207 ms
43,088 KB
testcase_15 AC 218 ms
44,268 KB
testcase_16 AC 233 ms
45,748 KB
testcase_17 AC 226 ms
44,900 KB
testcase_18 AC 982 ms
62,800 KB
testcase_19 AC 970 ms
61,820 KB
testcase_20 AC 1,209 ms
73,784 KB
testcase_21 AC 583 ms
52,252 KB
testcase_22 AC 570 ms
51,932 KB
testcase_23 AC 1,292 ms
71,500 KB
testcase_24 AC 1,229 ms
87,044 KB
testcase_25 AC 1,176 ms
69,880 KB
testcase_26 AC 1,098 ms
68,116 KB
testcase_27 AC 943 ms
91,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main implements Runnable{

	public static void main(String[] args) {
		new Thread(null,new Main(), "" ,Runtime.getRuntime().maxMemory()).start();
	}
	
	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);
	}
	
	public 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