結果

問題 No.1715 Dinner 2
ユーザー bluemeganebluemegane
提出日時 2021-10-24 10:31:22
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 3,243 bytes
コンパイル時間 844 ms
コンパイル使用メモリ 105,600 KB
実行使用メモリ 40,960 KB
最終ジャッジ日時 2024-10-01 21:52:32
合計ジャッジ時間 6,560 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
17,920 KB
testcase_01 AC 20 ms
17,920 KB
testcase_02 AC 20 ms
17,664 KB
testcase_03 AC 19 ms
18,048 KB
testcase_04 AC 20 ms
17,920 KB
testcase_05 WA -
testcase_06 AC 19 ms
18,048 KB
testcase_07 WA -
testcase_08 AC 20 ms
18,048 KB
testcase_09 AC 20 ms
18,048 KB
testcase_10 WA -
testcase_11 AC 363 ms
38,540 KB
testcase_12 AC 263 ms
37,248 KB
testcase_13 AC 236 ms
36,224 KB
testcase_14 AC 291 ms
37,300 KB
testcase_15 AC 312 ms
37,760 KB
testcase_16 AC 270 ms
36,352 KB
testcase_17 AC 189 ms
36,616 KB
testcase_18 WA -
testcase_19 AC 25 ms
18,176 KB
testcase_20 AC 22 ms
17,932 KB
testcase_21 AC 21 ms
18,176 KB
testcase_22 WA -
testcase_23 AC 24 ms
18,176 KB
testcase_24 AC 23 ms
17,688 KB
testcase_25 AC 54 ms
25,088 KB
testcase_26 AC 42 ms
22,272 KB
testcase_27 AC 42 ms
22,528 KB
testcase_28 AC 48 ms
24,448 KB
testcase_29 AC 54 ms
24,576 KB
testcase_30 AC 48 ms
23,936 KB
testcase_31 AC 50 ms
24,320 KB
testcase_32 AC 449 ms
40,832 KB
testcase_33 AC 422 ms
40,960 KB
testcase_34 AC 450 ms
40,832 KB
testcase_35 AC 485 ms
40,960 KB
testcase_36 AC 22 ms
17,664 KB
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

public class Hello
{
    public static int max1, max2, tmax1, tmax2, max1i, max2i, tmax1i, tmax2i;
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = int.Parse(line[0]);
        var d = int.Parse(line[1]);
        var p = new int[n];
        var q = new int[n];
        var r = new int[n];
        for (int i = 0; i < n; i++)
        {
            line = Console.ReadLine().Trim().Split(' ');
            p[i] = int.Parse(line[0]);
            q[i] = int.Parse(line[1]);
            r[i] = q[i] - p[i];
        }
        getAns(n, d, p, q, r);

    }
    static void getAns(int n, int d, int[] p, int[] q, int[] r)
    {
        var ok = -100000000;
        var ng = 0;
        while (ng - ok > 1)
        {
            var mid = ok + (ng - ok) / 2;
            if (check(n, d, p, q, r, mid)) ok = mid;
            else ng = mid;
        }
        Console.WriteLine(ok);
    }
    static void setMax(int t,int i)
    {
        if (t >= max1) { max2 = max1; max2i = max1i; max1 = t; max1i = i; }
        else if (t >= max2) { max2 = t; max2i = i;   }
    }
    static void setTmax(int t , int i)
    {
        if (t >= tmax1) { tmax2 = tmax1; tmax2i = tmax1i; tmax1 = t; tmax1i = i; }
        else if (t >= tmax2) { tmax2 = t; tmax2i = i;   }
    }

    static bool check(int n, int d, int[] p, int[] q, int[] r, int t)
    {
        var dp = new int[d + 1, n];
        for (int i = 0; i < d + 1; i++)
            for (int j = 0; j < n; j++) dp[i, j] = int.MinValue;
        max1 = int.MinValue;
        max2 = int.MinValue;
        for (int i = 0; i < n; i++)
        {
            if (-p[i] >= t) dp[1, i] = r[i];
            setMax( dp[1,i] ,i);
        }
        if (max1 == int.MinValue) return false;
        for (int i = 2; i <= d; i++)
        {
            tmax1 = int.MinValue;
            tmax2 = int.MinValue;
            for (int j = 0; j < n; j++)
            {
                if (j == max1i)
                {
                    if (max2 == int.MinValue) { dp[i, j] = int.MinValue; setTmax(int.MinValue, j); }
                    else
                    {
                        if (dp[i - 1, max2i] - p[j] < t) 
                        {
                            dp[i, j] = int.MinValue; 
                            setTmax(int.MinValue, j);
                        }
                        else
                        {
                            dp[i, j] = dp[i - 1, max2i] + r[j];
                            setTmax(dp[i - 1, max2i] + r[j],j);
                        }
                    }
                }
                else
                {
                    if (dp[i - 1, max1i] - p[j] < t) { dp[i, j] = int.MinValue; setTmax(int.MinValue, j); }
                    else
                    {
                        dp[i, j] = dp[i - 1, max1i] + r[j];
                        setTmax(dp[i - 1, max1i] + r[j], j);
                    }
                }
            }
            max1 = tmax1;
            max2 = tmax2;
            max1i = tmax1i;
            max2i = tmax2i;
        }
        for (int i = 0; i < n; i++)
        {
            if (dp[d, i] != int.MinValue) { return true; }
        }
        return false;
    }
}
0