結果

問題 No.771 しおり
ユーザー bluemeganebluemegane
提出日時 2021-05-14 11:30:11
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 2,004 bytes
コンパイル時間 814 ms
コンパイル使用メモリ 107,520 KB
実行使用メモリ 151,092 KB
最終ジャッジ日時 2024-10-01 15:07:44
合計ジャッジ時間 23,103 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,969 ms
132,924 KB
testcase_01 AC 147 ms
32,640 KB
testcase_02 AC 27 ms
18,816 KB
testcase_03 AC 27 ms
19,072 KB
testcase_04 AC 26 ms
18,560 KB
testcase_05 AC 27 ms
18,816 KB
testcase_06 AC 26 ms
18,816 KB
testcase_07 AC 27 ms
18,944 KB
testcase_08 AC 27 ms
18,944 KB
testcase_09 AC 26 ms
18,816 KB
testcase_10 AC 26 ms
18,688 KB
testcase_11 AC 26 ms
18,816 KB
testcase_12 AC 28 ms
18,816 KB
testcase_13 AC 28 ms
18,944 KB
testcase_14 AC 30 ms
19,068 KB
testcase_15 AC 26 ms
18,816 KB
testcase_16 AC 26 ms
19,072 KB
testcase_17 AC 30 ms
18,688 KB
testcase_18 AC 26 ms
18,944 KB
testcase_19 AC 29 ms
19,072 KB
testcase_20 AC 27 ms
18,688 KB
testcase_21 AC 27 ms
18,816 KB
testcase_22 AC 27 ms
18,944 KB
testcase_23 AC 27 ms
18,560 KB
testcase_24 AC 27 ms
18,560 KB
testcase_25 AC 655 ms
69,404 KB
testcase_26 AC 36 ms
19,900 KB
testcase_27 AC 164 ms
33,152 KB
testcase_28 AC 334 ms
46,976 KB
testcase_29 AC 161 ms
33,024 KB
testcase_30 AC 1,719 ms
123,164 KB
testcase_31 AC 1,632 ms
121,576 KB
testcase_32 AC 43 ms
21,504 KB
testcase_33 AC 1,594 ms
119,448 KB
testcase_34 AC 1,856 ms
122,896 KB
testcase_35 AC 53 ms
22,016 KB
testcase_36 AC 31 ms
19,288 KB
testcase_37 AC 31 ms
19,388 KB
testcase_38 AC 50 ms
21,248 KB
testcase_39 AC 31 ms
19,140 KB
testcase_40 AC 628 ms
68,324 KB
testcase_41 AC 1,783 ms
121,484 KB
testcase_42 AC 1,555 ms
117,624 KB
testcase_43 AC 157 ms
32,896 KB
testcase_44 TLE -
testcase_45 AC 1,747 ms
118,536 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.Linq;
using System.Collections.Generic;
using System;

public class P
{
    public int ended { get; set; }
    public int pre { get; set; }
}

public class Hello
{
    public static int n;
    static void Main()
    {
        n = int.Parse(Console.ReadLine().Trim());
        var input = new int[n, 2];
        for (int i = 0; i < n; i++)
        {
            string[] line = Console.ReadLine().Trim().Split(' ');
            input[i, 0] = int.Parse(line[0]);
            input[i, 1] = int.Parse(line[1]);
        }
        getAns(input);
    }
    static int[,] makeArray(int[,] input)
    {
        var res = new int[n, n];
        for (int i = 0; i < n; i++)
            for (int j = 0; j < n; j++)
                if (i != j) res[i, j] = input[i, 1] - input[i, 0] + input[j, 0];
        return res;
    }
    static void getAns(int[,] input)
    {
        var aa = makeArray(input);
        var imax = 1 << n;
        var dp = new int[imax, n];
        for (int i = 0; i < imax; i++)
            for (int j = 0; j < n; j++) dp[i, j] = int.MaxValue;
        var q = new Queue<P>();
        for (int i = 0; i < n; i++)
        {
            var t = 1 << i;
            dp[t, i] = 0;
            q.Enqueue(new P { ended = t, pre = i });
        }
        while (q.Count() > 0)
        {
            var w = q.Dequeue();
            for (int i = 0; i < n; i++)
            {
                if (((w.ended >> i) & 1) == 0)
                {

                    var ndp = Max(dp[w.ended, w.pre], aa[w.pre, i]);
                    var nended = (w.ended | (1 << i));
                    if (ndp < dp[nended, i])
                    {
                        dp[nended, i] = ndp;
                        q.Enqueue(new P { ended = nended, pre = i });
                    }
                }
            }
        }
        var ans = int.MaxValue;
        for (int i = 0; i < n; i++)
            ans = Min(ans, dp[imax - 1, i]);
        Console.WriteLine(ans);
    }
}
0