結果

問題 No.1637 Easy Tree Query
ユーザー fgwiebfaoishfgwiebfaoish
提出日時 2021-08-06 23:01:52
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 297 ms / 2,000 ms
コード長 2,752 bytes
コンパイル時間 1,131 ms
コンパイル使用メモリ 112,272 KB
実行使用メモリ 48,632 KB
最終ジャッジ日時 2024-09-17 03:56:27
合計ジャッジ時間 10,387 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
26,188 KB
testcase_01 AC 25 ms
26,188 KB
testcase_02 AC 253 ms
48,632 KB
testcase_03 AC 22 ms
21,984 KB
testcase_04 AC 111 ms
36,152 KB
testcase_05 AC 190 ms
39,284 KB
testcase_06 AC 143 ms
36,392 KB
testcase_07 AC 78 ms
29,644 KB
testcase_08 AC 96 ms
35,408 KB
testcase_09 AC 202 ms
39,300 KB
testcase_10 AC 111 ms
32,364 KB
testcase_11 AC 260 ms
44,028 KB
testcase_12 AC 236 ms
42,228 KB
testcase_13 AC 65 ms
35,580 KB
testcase_14 AC 161 ms
39,848 KB
testcase_15 AC 242 ms
41,764 KB
testcase_16 AC 220 ms
43,164 KB
testcase_17 AC 86 ms
31,916 KB
testcase_18 AC 188 ms
38,948 KB
testcase_19 AC 194 ms
37,380 KB
testcase_20 AC 249 ms
40,568 KB
testcase_21 AC 148 ms
37,860 KB
testcase_22 AC 288 ms
45,780 KB
testcase_23 AC 88 ms
32,132 KB
testcase_24 AC 138 ms
37,504 KB
testcase_25 AC 198 ms
37,344 KB
testcase_26 AC 244 ms
41,068 KB
testcase_27 AC 297 ms
44,272 KB
testcase_28 AC 151 ms
37,224 KB
testcase_29 AC 197 ms
40,516 KB
testcase_30 AC 116 ms
37,176 KB
testcase_31 AC 130 ms
32,612 KB
testcase_32 AC 120 ms
33,560 KB
testcase_33 AC 177 ms
35,952 KB
testcase_34 AC 146 ms
45,660 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Collections;
using System.Collections.Specialized;
using System.Linq;
using System.Text;
using System.IO;
using System.Reflection;
using static System.Math;
using System.Numerics;
using System.Threading;
using System.Runtime.CompilerServices;
static class Program{
	const int mod=(int)1e9+7;
	static List<int>[] li;
	static bool[] b;
	static int[] h;
	static void Main(){
		Sc sc=new Sc();
		var s=sc.Ia;
		int n=s[0],m=n-1;
		li=new List<int>[n+1];
		b=new bool[n+1];
		h=new int[n+1];
		for(int i=1;i<=n;i++){li[i]=new List<int>();}
		for(int i=0;i<m;i++){
			var e=sc.Ia;
			li[e[0]].Add(e[1]);
			li[e[1]].Add(e[0]);
		}
		Fu(1);
		long ans=0;
		StringBuilder sb=new StringBuilder();
		for(int i = 0;i<s[1];i++) {
			var e=sc.La;
			ans+=h[e[0]]*e[1];
			sb.Append(ans+"\n");
		}
		Console.Write(sb);
	}
	static void Fu(int a){
		b[a]=true;
		h[a]=1;
		for(int i=0;i<li[a].Count;i++){
			if(!b[li[a][i]]){
				Fu(li[a][i]);
				h[a]+=h[li[a][i]];
			}
		}
	}
}

public class Sc{
	public int I{get{return int.Parse(Console.ReadLine());}}
	public long L{get{return long.Parse(Console.ReadLine());}}
	public double D{get{return double.Parse(Console.ReadLine());}}
	public string S{get{return Console.ReadLine();}}
	public int[] Ia{get{return Array.ConvertAll(Console.ReadLine().Split(),int.Parse);}}
	public long[] La{get{return Array.ConvertAll(Console.ReadLine().Split(),long.Parse);}}
	public double[] Da{get{return Array.ConvertAll(Console.ReadLine().Split(),double.Parse);}}
	public string[] Sa{get{return Console.ReadLine().Split();}}
	public object[] Oa{get{return Console.ReadLine().Split();}}
	public int[] Ia2{get{return Array.ConvertAll(("0 "+Console.ReadLine()+" 0").Split(),int.Parse);}}
	public int[] Ia3(string a,string b){return Array.ConvertAll((a+Console.ReadLine()+b).Split(),int.Parse);}
	public long[] La2{get{return Array.ConvertAll(("0 "+Console.ReadLine()+" 0").Split(),long.Parse);}}
	public long[] La3(string a,string b){return Array.ConvertAll((a+Console.ReadLine()+b).Split(),long.Parse);}
	public double[] Da2{get{return Array.ConvertAll(("0 "+Console.ReadLine()+" 0").Split(),double.Parse);}}
	public double[] Da3(string a,string b){return Array.ConvertAll((a+Console.ReadLine()+b).Split(),double.Parse);}
	public T[] Arr<T>(int n,Func<T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f();}return a;}
	public T[] Arr<T>(int n,Func<int,T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f(i);}return a;}
	public T[] Arr<T>(int n,Func<string[],T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f(Console.ReadLine().Split());}return a;}
	public T[] Arr<T>(int n,Func<int,string[],T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f(i,Console.ReadLine().Split());}return a;}
}
0