結果

問題 No.2403 "Eight" Bridges of Königsberg
ユーザー kakel-sankakel-san
提出日時 2023-08-04 23:04:29
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 210 ms / 2,000 ms
コード長 2,206 bytes
コンパイル時間 1,736 ms
コンパイル使用メモリ 117,300 KB
実行使用メモリ 31,616 KB
最終ジャッジ日時 2024-05-05 01:28:14
合計ジャッジ時間 4,325 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
19,200 KB
testcase_01 AC 26 ms
19,328 KB
testcase_02 AC 26 ms
19,456 KB
testcase_03 AC 27 ms
19,200 KB
testcase_04 AC 110 ms
26,240 KB
testcase_05 AC 190 ms
30,464 KB
testcase_06 AC 194 ms
31,104 KB
testcase_07 AC 131 ms
27,520 KB
testcase_08 AC 140 ms
28,544 KB
testcase_09 AC 210 ms
31,616 KB
testcase_10 AC 196 ms
31,104 KB
testcase_11 AC 149 ms
29,184 KB
testcase_12 AC 198 ms
31,488 KB
testcase_13 AC 143 ms
28,416 KB
testcase_14 AC 26 ms
19,328 KB
testcase_15 AC 26 ms
19,456 KB
testcase_16 AC 26 ms
19,328 KB
testcase_17 AC 26 ms
19,584 KB
testcase_18 AC 26 ms
19,328 KB
testcase_19 AC 29 ms
21,120 KB
testcase_20 AC 27 ms
19,208 KB
testcase_21 AC 29 ms
19,968 KB
testcase_22 AC 31 ms
20,736 KB
testcase_23 AC 30 ms
20,864 KB
testcase_24 AC 31 ms
20,480 KB
testcase_25 AC 29 ms
20,096 KB
testcase_26 AC 26 ms
19,456 KB
testcase_27 AC 32 ms
21,632 KB
testcase_28 AC 31 ms
20,864 KB
testcase_29 AC 29 ms
19,904 KB
testcase_30 AC 29 ms
19,968 KB
testcase_31 AC 33 ms
21,376 KB
testcase_32 AC 30 ms
19,456 KB
testcase_33 AC 29 ms
19,200 KB
testcase_34 AC 30 ms
19,672 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 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 map = NMap(m);
        var from = new int[n];
        var to = new int[n];
        var uf = new UnionFindTree(n);
        foreach (var edge in map)
        {
            ++from[edge[0]];
            ++to[edge[1]];
            uf.Unite(edge[0], edge[1]);
        }
        var pts = new int[n];
        for (var i = 0; i < n; ++i) if (from[i] > to[i]) pts[uf.GetRoot(i)] += from[i] - to[i];
        var list = new List<int>();
        for (var i = 0; i < n; ++i) if (uf.GetRoot(i) == i && (uf.GetSize(i) > 1 || from[i] > 0))
        {
            list.Add(pts[i]);
        }
        var ans = list.Count - 1;
        foreach (var li in list) ans += Math.Max(0, li - 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