結果

問題 No.1390 Get together
ユーザー kakel-sankakel-san
提出日時 2024-07-22 23:33:51
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 303 ms / 2,000 ms
コード長 1,967 bytes
コンパイル時間 10,535 ms
コンパイル使用メモリ 165,860 KB
実行使用メモリ 219,928 KB
最終ジャッジ日時 2024-07-22 23:34:13
合計ジャッジ時間 18,874 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
30,464 KB
testcase_01 AC 61 ms
30,336 KB
testcase_02 AC 60 ms
30,560 KB
testcase_03 AC 68 ms
31,488 KB
testcase_04 AC 64 ms
31,232 KB
testcase_05 AC 64 ms
31,600 KB
testcase_06 AC 64 ms
31,232 KB
testcase_07 AC 64 ms
30,848 KB
testcase_08 AC 66 ms
31,232 KB
testcase_09 AC 67 ms
31,232 KB
testcase_10 AC 61 ms
30,464 KB
testcase_11 AC 63 ms
29,952 KB
testcase_12 AC 61 ms
30,464 KB
testcase_13 AC 61 ms
30,208 KB
testcase_14 AC 62 ms
30,572 KB
testcase_15 AC 61 ms
29,952 KB
testcase_16 AC 281 ms
63,832 KB
testcase_17 AC 267 ms
64,068 KB
testcase_18 AC 270 ms
63,808 KB
testcase_19 AC 284 ms
63,680 KB
testcase_20 AC 279 ms
63,432 KB
testcase_21 AC 303 ms
63,564 KB
testcase_22 AC 279 ms
63,864 KB
testcase_23 AC 274 ms
63,476 KB
testcase_24 AC 278 ms
63,600 KB
testcase_25 AC 303 ms
63,812 KB
testcase_26 AC 275 ms
63,816 KB
testcase_27 AC 278 ms
63,444 KB
testcase_28 AC 276 ms
63,560 KB
testcase_29 AC 302 ms
63,816 KB
testcase_30 AC 278 ms
63,692 KB
testcase_31 AC 290 ms
219,928 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (101 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

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[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    static int[] LList(long n) => Enumerable.Repeat(0, (int)n).Select(_ => int.Parse(ReadLine())).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, m) = (c[0], c[1]);
        var map = NArr(n);
        var id = Enumerable.Repeat(-1, n + 1).ToArray();
        var uf = new UnionFindTree(m + 1);
        foreach (var sl in map)
        {
            if (id[sl[1]] >= 0) uf.Unite(id[sl[1]], sl[0]);
            else id[sl[1]] = sl[0];
        }
        var ans = 0;
        for (var i = 1; i <= m; ++i) if (uf.GetRoot(i) == i)
        {
            ans += uf.GetSize(i) - 1;
        }
        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