結果

問題 No.1473 おでぶなおばけさん
ユーザー bluemeganebluemegane
提出日時 2021-04-11 09:56:17
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 1,037 ms / 2,000 ms
コード長 2,334 bytes
コンパイル時間 3,229 ms
コンパイル使用メモリ 113,088 KB
実行使用メモリ 44,284 KB
最終ジャッジ日時 2024-06-27 05:51:33
合計ジャッジ時間 17,163 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
18,688 KB
testcase_01 AC 29 ms
18,816 KB
testcase_02 AC 574 ms
43,776 KB
testcase_03 AC 350 ms
40,180 KB
testcase_04 AC 314 ms
33,784 KB
testcase_05 AC 124 ms
25,728 KB
testcase_06 AC 550 ms
40,828 KB
testcase_07 AC 677 ms
44,276 KB
testcase_08 AC 1,037 ms
44,152 KB
testcase_09 AC 511 ms
44,284 KB
testcase_10 AC 179 ms
32,384 KB
testcase_11 AC 213 ms
35,584 KB
testcase_12 AC 178 ms
33,280 KB
testcase_13 AC 130 ms
29,952 KB
testcase_14 AC 97 ms
27,520 KB
testcase_15 AC 175 ms
33,536 KB
testcase_16 AC 174 ms
31,872 KB
testcase_17 AC 38 ms
21,248 KB
testcase_18 AC 48 ms
22,656 KB
testcase_19 AC 178 ms
30,976 KB
testcase_20 AC 278 ms
36,724 KB
testcase_21 AC 346 ms
37,504 KB
testcase_22 AC 273 ms
40,692 KB
testcase_23 AC 216 ms
37,492 KB
testcase_24 AC 201 ms
36,608 KB
testcase_25 AC 652 ms
41,068 KB
testcase_26 AC 346 ms
40,960 KB
testcase_27 AC 175 ms
29,184 KB
testcase_28 AC 502 ms
43,764 KB
testcase_29 AC 309 ms
37,632 KB
testcase_30 AC 476 ms
40,568 KB
testcase_31 AC 491 ms
44,268 KB
testcase_32 AC 384 ms
40,692 KB
testcase_33 AC 250 ms
37,756 KB
testcase_34 AC 115 ms
29,824 KB
testcase_35 AC 149 ms
30,208 KB
testcase_36 AC 306 ms
34,816 KB
testcase_37 AC 236 ms
36,992 KB
testcase_38 AC 58 ms
24,448 KB
testcase_39 AC 172 ms
32,000 KB
testcase_40 AC 179 ms
31,744 KB
testcase_41 AC 177 ms
32,000 KB
testcase_42 AC 174 ms
32,384 KB
testcase_43 AC 247 ms
40,692 KB
testcase_44 AC 237 ms
40,824 KB
testcase_45 AC 237 ms
40,820 KB
testcase_46 AC 293 ms
36,472 KB
testcase_47 AC 379 ms
38,652 KB
testcase_48 AC 320 ms
37,500 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 Edge
{
    public int to { get; set; }
    public long d { get; set; }
}

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

public class Hello
{
    public static int n;
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        n = int.Parse(line[0]);
        var m = int.Parse(line[1]);
        var aa = new List<Edge>[n];
        for (int i = 0; i < n; i++) aa[i] = new List<Edge>();
        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 });
        }
        getAns(aa);
    }
    static void getAns(List<Edge>[] aa)
    {
        var ok = 1;
        var ng = 1000000001;
        while (ng - ok > 1)
        {
            var mid = ng + (ok - ng) / 2;
            if (check(aa, mid)) ok = mid;
            else ng = mid;
        }
        Console.WriteLine("{0} {1}", ok, getSTEP(aa, ok));
    }
    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;
    }
    static bool check(List<Edge>[] aa, int t)
    {
        var visited = new bool[n];
        var q = new Queue<int>();
        q.Enqueue(0);
        visited[0] = true;
        while (q.Count() > 0)
        {
            var w = q.Dequeue();
            if (w == n - 1) return true;
            foreach (var x in aa[w])
            {
                if (t <= x.d && !visited[x.to]) { q.Enqueue(x.to); visited[x.to] = true; }
            }
        }
        return false;
    }
}
0