結果
問題 | No.2494 Sum within Components |
ユーザー | kakel-san |
提出日時 | 2023-10-06 21:51:22 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,925 bytes |
コンパイル時間 | 1,218 ms |
コンパイル使用メモリ | 115,916 KB |
実行使用メモリ | 54,300 KB |
最終ジャッジ日時 | 2024-07-26 16:00:50 |
合計ジャッジ時間 | 4,157 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
25,380 KB |
testcase_01 | AC | 30 ms
25,012 KB |
testcase_02 | AC | 31 ms
27,088 KB |
testcase_03 | AC | 28 ms
23,084 KB |
testcase_04 | AC | 30 ms
25,140 KB |
testcase_05 | AC | 29 ms
25,124 KB |
testcase_06 | AC | 26 ms
25,040 KB |
testcase_07 | AC | 28 ms
27,348 KB |
testcase_08 | AC | 27 ms
25,124 KB |
testcase_09 | AC | 51 ms
32,668 KB |
testcase_10 | AC | 48 ms
28,792 KB |
testcase_11 | AC | 37 ms
26,248 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 125 ms
48,036 KB |
testcase_18 | AC | 149 ms
49,568 KB |
testcase_19 | WA | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using static System.Console; using System.Linq; using System.Collections.Generic; class Program { static int NN => int.Parse(ReadLine()); static int[] NList => ReadLine().Split().Select(int.Parse).ToArray(); static int[] NMi => ReadLine().Split().Select(c => int.Parse(c) - 1).ToArray(); static int[][] NMap(int n) => Enumerable.Repeat(0, n).Select(_ => NMi).ToArray(); public static void Main() { Solve(); } static void Solve() { var c = NList; var (n, m) = (c[0], c[1]); var a = NList; var map = NMap(m); var uf = new UnionFindTree(n); foreach (var edge in map) { uf.Unite(edge[0], edge[1]); } var sum = new long[n]; for (var i = 0; i < n; ++i) sum[uf.GetRoot(i)] += a[i]; var ans = 1L; var mod = 998_244_353; for (var i = 0; i < n; ++i) ans = ans * sum[uf.GetRoot(i)] % mod; WriteLine(ans); } class UnionFindTree { int[] roots; public UnionFindTree(int size) { roots = new int[size]; for (var i = 0; i < size; ++i) roots[i] = -1; } public int GetRoot(int a) { if (roots[a] < 0) return a; return roots[a] = GetRoot(roots[a]); } public bool IsSameTree(int a, int b) { return GetRoot(a) == GetRoot(b); } public bool Unite(int a, int b) { var x = GetRoot(a); var y = GetRoot(b); if (x == y) return false; if (-roots[x] < -roots[y]) { var tmp = x; x = y; y = tmp; } roots[x] += roots[y]; roots[y] = x; return true; } public int GetSize(int a) { return -roots[GetRoot(a)]; } } }