結果

問題 No.2200 Weird Shortest Path
ユーザー kakel-sankakel-san
提出日時 2023-01-28 20:36:03
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 421 ms / 2,000 ms
コード長 1,765 bytes
コンパイル時間 1,881 ms
コンパイル使用メモリ 108,672 KB
実行使用メモリ 33,792 KB
最終ジャッジ日時 2024-06-28 22:34:17
合計ジャッジ時間 14,203 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
18,944 KB
testcase_01 AC 29 ms
18,816 KB
testcase_02 AC 30 ms
18,944 KB
testcase_03 AC 30 ms
19,328 KB
testcase_04 AC 34 ms
20,096 KB
testcase_05 AC 30 ms
18,944 KB
testcase_06 AC 31 ms
19,200 KB
testcase_07 AC 31 ms
19,200 KB
testcase_08 AC 31 ms
19,456 KB
testcase_09 AC 32 ms
19,456 KB
testcase_10 AC 28 ms
18,816 KB
testcase_11 AC 30 ms
18,944 KB
testcase_12 AC 29 ms
18,944 KB
testcase_13 AC 28 ms
18,944 KB
testcase_14 AC 27 ms
19,072 KB
testcase_15 AC 30 ms
19,456 KB
testcase_16 AC 29 ms
18,944 KB
testcase_17 AC 149 ms
25,984 KB
testcase_18 AC 225 ms
28,544 KB
testcase_19 AC 390 ms
33,280 KB
testcase_20 AC 380 ms
32,896 KB
testcase_21 AC 158 ms
26,240 KB
testcase_22 AC 215 ms
28,032 KB
testcase_23 AC 411 ms
33,536 KB
testcase_24 AC 94 ms
24,064 KB
testcase_25 AC 398 ms
33,408 KB
testcase_26 AC 407 ms
33,408 KB
testcase_27 AC 152 ms
26,240 KB
testcase_28 AC 301 ms
30,592 KB
testcase_29 AC 405 ms
33,536 KB
testcase_30 AC 402 ms
33,280 KB
testcase_31 AC 252 ms
29,184 KB
testcase_32 AC 414 ms
33,664 KB
testcase_33 AC 416 ms
33,536 KB
testcase_34 AC 421 ms
33,536 KB
testcase_35 AC 420 ms
33,664 KB
testcase_36 AC 399 ms
33,536 KB
testcase_37 AC 421 ms
33,536 KB
testcase_38 AC 417 ms
33,536 KB
testcase_39 AC 213 ms
27,904 KB
testcase_40 AC 348 ms
33,792 KB
testcase_41 AC 202 ms
28,160 KB
testcase_42 AC 331 ms
33,536 KB
testcase_43 AC 380 ms
33,664 KB
testcase_44 AC 375 ms
33,536 KB
testcase_45 AC 382 ms
33,408 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;
class Program
{
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, m) = (c[0], c[1]);
        var map = NArr(m);
        Array.Sort(map, (l, r) => l[2].CompareTo(r[2]));
        var uf = new UnionFindTree(n);
        var ans = 0L;
        foreach (var edge in map)
        {
            var a = edge[0] - 1;
            var b = edge[1] - 1;
            if (!uf.IsSameTree(a, b))
            {
                ans += (long)edge[2] * uf.GetSize(a) * uf.GetSize(b);
                uf.Unite(a, b);
            }
        }
        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