結果

問題 No.2494 Sum within Components
ユーザー 👑 kakel-sankakel-san
提出日時 2023-10-06 21:51:22
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,925 bytes
コンパイル時間 1,189 ms
コンパイル使用メモリ 63,944 KB
実行使用メモリ 48,596 KB
最終ジャッジ日時 2023-10-06 21:51:27
合計ジャッジ時間 4,934 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
21,940 KB
testcase_01 AC 61 ms
22,056 KB
testcase_02 AC 62 ms
21,924 KB
testcase_03 AC 63 ms
21,924 KB
testcase_04 AC 63 ms
23,872 KB
testcase_05 AC 64 ms
24,012 KB
testcase_06 AC 63 ms
22,036 KB
testcase_07 AC 62 ms
21,876 KB
testcase_08 AC 62 ms
21,848 KB
testcase_09 AC 90 ms
28,816 KB
testcase_10 AC 87 ms
25,068 KB
testcase_11 AC 76 ms
24,768 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 165 ms
48,436 KB
testcase_18 AC 181 ms
48,116 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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)];
        }
    }
}
0