結果

問題 No.1583 Building Blocks
ユーザー kakel-sankakel-san
提出日時 2024-02-25 23:03:44
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 1,257 bytes
コンパイル時間 8,017 ms
コンパイル使用メモリ 166,404 KB
実行使用メモリ 185,736 KB
最終ジャッジ日時 2024-09-29 11:27:02
合計ジャッジ時間 10,515 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
30,208 KB
testcase_01 AC 55 ms
30,304 KB
testcase_02 AC 53 ms
30,720 KB
testcase_03 AC 56 ms
33,152 KB
testcase_04 AC 53 ms
31,352 KB
testcase_05 AC 51 ms
32,536 KB
testcase_06 AC 56 ms
33,152 KB
testcase_07 AC 56 ms
34,048 KB
testcase_08 AC 54 ms
31,488 KB
testcase_09 AC 62 ms
38,016 KB
testcase_10 AC 52 ms
30,200 KB
testcase_11 AC 51 ms
30,720 KB
testcase_12 AC 57 ms
34,432 KB
testcase_13 AC 60 ms
36,224 KB
testcase_14 AC 56 ms
32,768 KB
testcase_15 AC 58 ms
34,432 KB
testcase_16 AC 63 ms
35,448 KB
testcase_17 AC 60 ms
34,816 KB
testcase_18 AC 54 ms
31,872 KB
testcase_19 AC 68 ms
39,520 KB
testcase_20 AC 60 ms
32,384 KB
testcase_21 AC 60 ms
32,384 KB
testcase_22 AC 56 ms
32,768 KB
testcase_23 AC 54 ms
31,616 KB
testcase_24 AC 61 ms
35,584 KB
testcase_25 AC 51 ms
30,592 KB
testcase_26 AC 63 ms
36,860 KB
testcase_27 AC 61 ms
32,640 KB
testcase_28 AC 70 ms
37,632 KB
testcase_29 AC 60 ms
31,744 KB
testcase_30 AC 59 ms
31,360 KB
testcase_31 AC 64 ms
35,968 KB
testcase_32 AC 60 ms
33,024 KB
testcase_33 AC 65 ms
39,424 KB
testcase_34 AC 52 ms
30,464 KB
testcase_35 AC 57 ms
33,504 KB
testcase_36 AC 60 ms
36,864 KB
testcase_37 AC 55 ms
31,616 KB
testcase_38 AC 52 ms
30,336 KB
testcase_39 AC 51 ms
30,592 KB
testcase_40 AC 50 ms
30,720 KB
testcase_41 AC 55 ms
30,720 KB
testcase_42 AC 58 ms
30,720 KB
testcase_43 AC 59 ms
30,720 KB
testcase_44 AC 54 ms
30,464 KB
testcase_45 AC 54 ms
185,736 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (102 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

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[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        var map = NArr(n);
        WriteLine(Blocks(n, map));
    }
    static int Blocks(int n, int[][] map)
    {
        Array.Sort(map, (l, r) => (l[0] + l[1]).CompareTo(r[0] + r[1]));
        var dp = new long[n + 1][];
        for (var i = 0; i < dp.Length; ++i) dp[i] = Enumerable.Repeat(long.MaxValue / 2, n + 1).ToArray();
        dp[0][0] = 0;
        for (var i = 0; i < n; ++i)
        {
            for (var j = 0; j < n; ++j)
            {
                dp[i + 1][j] = Math.Min(dp[i + 1][j], dp[i][j]);
                if (dp[i][j] <= map[i][1]) dp[i + 1][j + 1] = Math.Min(dp[i + 1][j + 1], dp[i][j] + map[i][0]);
            }
        }
        var ans = 0;
        for (var i = 0; i <= n; ++i) if (dp[n][i] < long.MaxValue / 2) ans = i;
        return ans;
    }
}
0