結果

問題 No.1473 おでぶなおばけさん
ユーザー bluemeganebluemegane
提出日時 2021-04-11 13:20:44
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 407 ms / 2,000 ms
コード長 2,805 bytes
コンパイル時間 954 ms
コンパイル使用メモリ 116,804 KB
実行使用メモリ 46,064 KB
最終ジャッジ日時 2024-06-27 08:36:39
合計ジャッジ時間 16,655 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
19,456 KB
testcase_01 AC 33 ms
19,328 KB
testcase_02 AC 379 ms
45,172 KB
testcase_03 AC 304 ms
41,972 KB
testcase_04 AC 184 ms
34,688 KB
testcase_05 AC 83 ms
25,728 KB
testcase_06 AC 329 ms
42,996 KB
testcase_07 AC 380 ms
46,064 KB
testcase_08 AC 407 ms
46,064 KB
testcase_09 AC 378 ms
45,944 KB
testcase_10 AC 224 ms
37,248 KB
testcase_11 AC 225 ms
39,296 KB
testcase_12 AC 227 ms
38,016 KB
testcase_13 AC 155 ms
32,256 KB
testcase_14 AC 121 ms
29,440 KB
testcase_15 AC 206 ms
36,992 KB
testcase_16 AC 209 ms
35,712 KB
testcase_17 AC 44 ms
21,632 KB
testcase_18 AC 57 ms
24,448 KB
testcase_19 AC 203 ms
34,944 KB
testcase_20 AC 268 ms
40,568 KB
testcase_21 AC 294 ms
40,448 KB
testcase_22 AC 307 ms
42,232 KB
testcase_23 AC 259 ms
39,804 KB
testcase_24 AC 249 ms
39,420 KB
testcase_25 AC 306 ms
41,728 KB
testcase_26 AC 307 ms
42,356 KB
testcase_27 AC 126 ms
30,464 KB
testcase_28 AC 364 ms
45,556 KB
testcase_29 AC 254 ms
37,376 KB
testcase_30 AC 323 ms
41,588 KB
testcase_31 AC 372 ms
45,172 KB
testcase_32 AC 332 ms
43,764 KB
testcase_33 AC 257 ms
38,912 KB
testcase_34 AC 132 ms
30,720 KB
testcase_35 AC 157 ms
31,616 KB
testcase_36 AC 228 ms
36,992 KB
testcase_37 AC 226 ms
38,908 KB
testcase_38 AC 67 ms
25,088 KB
testcase_39 AC 219 ms
36,864 KB
testcase_40 AC 221 ms
36,864 KB
testcase_41 AC 209 ms
36,224 KB
testcase_42 AC 207 ms
36,096 KB
testcase_43 AC 248 ms
42,748 KB
testcase_44 AC 238 ms
42,600 KB
testcase_45 AC 241 ms
42,728 KB
testcase_46 AC 254 ms
37,748 KB
testcase_47 AC 320 ms
41,844 KB
testcase_48 AC 270 ms
39,544 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Collections.Generic;
using System.Linq;
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 E2
{
    public int n1 { get; set; }
    public int n2 { get; set; }
    public int d { get; set; }
}


public class Edge
{
    public int to { get; set; }
    public int d { get; set; }
}

public class P
{
    public int from { get; set; }
    public int step { get; set; }
}

public class Hello
{
    public static int n, m;
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        n = int.Parse(line[0]);
        m = int.Parse(line[1]);
        var aa = new List<Edge>[n];
        for (int i = 0; i < n; i++) aa[i] = new List<Edge>();
        var e2s = new E2[m];
        for (int i = 0; i < m; i++)
        {
            line = Console.ReadLine().Trim().Split(' ');
            var s = int.Parse(line[0]) - 1;
            var t = int.Parse(line[1]) - 1;
            var d = int.Parse(line[2]);
            aa[s].Add(new Edge { to = t, d = d });
            aa[t].Add(new Edge { to = s, d = d });
            e2s[i] = new E2 { n1 = s, n2 = t, d = d };
        }
        var W = getW(e2s);
        var step = getSTEP(aa, W);
        Console.WriteLine("{0} {1}", W, step);
    }
    static int getW(E2[] e2s)
    {
        var uf = new UnionFind(n);
        foreach( var x in e2s.OrderByDescending(x =>x.d))
        {
            uf.Unite(x.n1, x.n2);
            if (uf.Root(n - 1) == uf.Root(0)) return x.d;
        }
        return 0;
    }

    static int getSTEP(List<Edge>[] aa, int t)
    {
        var visited = new bool[n];
        var q = new Queue<P>();
        q.Enqueue(new P { from = 0, step = 0 });
        visited[0] = true;
        while (q.Count() > 0)
        {
            var w = q.Dequeue();
            if (w.from == n - 1) return w.step;
            foreach (var x in aa[w.from])
            {
                if (t <= x.d && !visited[x.to])
                {
                    q.Enqueue(new P { from = x.to, step = w.step + 1 });
                    visited[x.to] = true;
                }
            }
        }
        return 0;
    }
}
0