結果

問題 No.556 仁義なきサルたち
ユーザー bluemeganebluemegane
提出日時 2021-05-01 12:55:30
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 2,078 bytes
コンパイル時間 2,433 ms
コンパイル使用メモリ 105,728 KB
実行使用メモリ 19,724 KB
最終ジャッジ日時 2024-07-19 20:12:57
合計ジャッジ時間 3,922 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
17,920 KB
testcase_01 AC 25 ms
17,792 KB
testcase_02 AC 26 ms
17,920 KB
testcase_03 AC 26 ms
17,664 KB
testcase_04 AC 26 ms
18,048 KB
testcase_05 AC 26 ms
17,920 KB
testcase_06 AC 26 ms
18,048 KB
testcase_07 AC 26 ms
18,048 KB
testcase_08 AC 26 ms
18,048 KB
testcase_09 AC 26 ms
18,176 KB
testcase_10 AC 27 ms
17,920 KB
testcase_11 AC 28 ms
18,048 KB
testcase_12 AC 27 ms
18,176 KB
testcase_13 AC 27 ms
18,304 KB
testcase_14 AC 30 ms
18,424 KB
testcase_15 AC 30 ms
18,676 KB
testcase_16 AC 30 ms
18,760 KB
testcase_17 AC 33 ms
18,768 KB
testcase_18 AC 38 ms
19,620 KB
testcase_19 AC 37 ms
19,548 KB
testcase_20 AC 37 ms
19,640 KB
testcase_21 AC 38 ms
19,724 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using static System.Math;
using System;

public class UnionFind
{
    private int[] data;
    public UnionFind(int size)
    {
        data = new int[size];
        for (int i = 0; i < size; i++) data[i] = -1;
    }
    public bool Unite(int x, int y)
    {
        x = Root(x);
        y = Root(y);
        if (x != y)
        {
            if (data[y] < data[x])
            {
                var tmp = y;
                y = x;
                x = tmp;
            }
            data[x] += data[y];
            data[y] = x;
        }
        return x != y;
    }
    public bool IsSameGroup(int x, int y) => Root(x) == Root(y);
    public int Root(int x) => data[x] < 0 ? x : data[x] = Root(data[x]);
    public int getMem(int x) => -data[Root(x)];
}

public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = int.Parse(line[0]);
        var m = int.Parse(line[1]);
        getAns(n, m);
    }
    static void getAns(int n, int m)
    {
        var uf = new UnionFind(n + 1);
        var p = new int[n];
        for (int i = 0; i < n; i++) p[i] = i + 1;
        for (int i = 0; i < m; i++)
        {
            string[] line = Console.ReadLine().Trim().Split(' ');
            var a = int.Parse(line[0]);
            var b = int.Parse(line[1]);
            if (uf.IsSameGroup(a, b)) continue;
            var counta = uf.getMem(a);
            var countb = uf.getMem(b);
            if (counta == countb)
            {
                var ap = p[uf.Root(a)-1];
                var bp = p[uf.Root(b) -1];
                var tp = Min(ap, bp);
                p[uf.Root(a)-1 ] = tp;
                p[uf.Root(b) -1] = tp;
            }
            else
            {
                if (counta > countb) p[uf.Root(b) -1] = p[uf.Root(a)-1];
                else p[uf.Root(a) -1] = p[uf.Root(b)-1];
            }
            uf.Unite(a, b);
        }
        var ans = new int[n];
        for (int i = 1; i <= n; i++) ans[i - 1] = p[uf.Root(i) - 1];
        Console.WriteLine(string.Join("\n",ans));
    }
}
0