結果
問題 | No.386 貪欲な領主 |
ユーザー | mban |
提出日時 | 2016-11-04 05:14:24 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,872 bytes |
コンパイル時間 | 2,750 ms |
コンパイル使用メモリ | 116,992 KB |
実行使用メモリ | 91,620 KB |
最終ジャッジ日時 | 2024-11-25 02:29:49 |
合計ジャッジ時間 | 21,747 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
34,140 KB |
testcase_01 | AC | 27 ms
33,864 KB |
testcase_02 | AC | 26 ms
33,744 KB |
testcase_03 | AC | 27 ms
86,236 KB |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | AC | 47 ms
78,484 KB |
testcase_08 | TLE | - |
testcase_09 | AC | 94 ms
91,620 KB |
testcase_10 | AC | 27 ms
31,976 KB |
testcase_11 | AC | 27 ms
27,044 KB |
testcase_12 | AC | 31 ms
27,164 KB |
testcase_13 | AC | 464 ms
45,496 KB |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; class Magatro { static int N, M; static List<int>[] Root; static int[] U; static void Main() { Read(); int m = int.Parse(Console.ReadLine()); long cnt = 0; for(int i = 0; i < m; i++) { int[] abc = Console.ReadLine().Split(' ').Select(s => int.Parse(s)).ToArray(); cnt += calc(abc[0], abc[1]) * abc[2]; } Console.WriteLine(cnt); } static int calc(int s, int g) { int[] miti = new int[N]; bool[] ed = new bool[N]; miti[s] = U[s]; ed[s] = true; Queue<int> q = new Queue<int>(); q.Enqueue(s); while (q.Count > 0) { int i = q.Dequeue(); for (int j = 0; j < Root[i].Count; j++) { int w = Root[i][j]; if (!ed[w]) { q.Enqueue(w); ed[w] = true; miti[w] = miti[i] + U[w]; if (w == g) { return miti[g]; } } } } return -1; } static void Read() { N = int.Parse(Console.ReadLine()); Root = new List<int>[N]; for (int i = 0; i < N; i++) { Root[i] = new List<int>(); } for (int i = 0; i < N - 1; i++) { string[] s = Console.ReadLine().Split(' '); int a = int.Parse(s[0]); int b = int.Parse(s[1]); Root[a].Add(b); Root[b].Add(a); } U = new int[N]; for(int i = 0; i < N; i++) { U[i] = int.Parse(Console.ReadLine()); } } }