結果

問題 No.2701 A cans -> B cans
ユーザー kakel-sankakel-san
提出日時 2024-03-29 22:49:30
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 328 ms / 1,000 ms
コード長 1,562 bytes
コンパイル時間 7,816 ms
コンパイル使用メモリ 166,948 KB
実行使用メモリ 212,448 KB
最終ジャッジ日時 2024-09-30 16:37:16
合計ジャッジ時間 24,647 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
31,360 KB
testcase_01 AC 64 ms
31,232 KB
testcase_02 AC 65 ms
31,360 KB
testcase_03 AC 63 ms
31,360 KB
testcase_04 AC 83 ms
31,608 KB
testcase_05 AC 64 ms
31,472 KB
testcase_06 AC 66 ms
31,872 KB
testcase_07 AC 67 ms
31,972 KB
testcase_08 AC 64 ms
31,744 KB
testcase_09 AC 67 ms
32,000 KB
testcase_10 AC 74 ms
31,872 KB
testcase_11 AC 72 ms
32,000 KB
testcase_12 AC 66 ms
31,616 KB
testcase_13 AC 67 ms
31,616 KB
testcase_14 AC 63 ms
31,728 KB
testcase_15 AC 61 ms
31,716 KB
testcase_16 AC 60 ms
32,000 KB
testcase_17 AC 62 ms
31,872 KB
testcase_18 AC 60 ms
31,872 KB
testcase_19 AC 61 ms
31,616 KB
testcase_20 AC 60 ms
31,872 KB
testcase_21 AC 59 ms
31,716 KB
testcase_22 AC 60 ms
32,000 KB
testcase_23 AC 60 ms
32,000 KB
testcase_24 AC 61 ms
31,744 KB
testcase_25 AC 60 ms
31,868 KB
testcase_26 AC 170 ms
56,064 KB
testcase_27 AC 168 ms
56,312 KB
testcase_28 AC 169 ms
55,936 KB
testcase_29 AC 224 ms
56,320 KB
testcase_30 AC 231 ms
56,576 KB
testcase_31 AC 212 ms
56,292 KB
testcase_32 AC 205 ms
56,320 KB
testcase_33 AC 217 ms
56,576 KB
testcase_34 AC 222 ms
56,272 KB
testcase_35 AC 211 ms
56,576 KB
testcase_36 AC 216 ms
56,320 KB
testcase_37 AC 222 ms
56,320 KB
testcase_38 AC 236 ms
56,448 KB
testcase_39 AC 229 ms
56,448 KB
testcase_40 AC 230 ms
56,420 KB
testcase_41 AC 230 ms
56,320 KB
testcase_42 AC 203 ms
56,576 KB
testcase_43 AC 217 ms
56,692 KB
testcase_44 AC 233 ms
56,320 KB
testcase_45 AC 205 ms
56,420 KB
testcase_46 AC 225 ms
56,576 KB
testcase_47 AC 223 ms
56,188 KB
testcase_48 AC 220 ms
56,448 KB
testcase_49 AC 226 ms
56,192 KB
testcase_50 AC 225 ms
56,192 KB
testcase_51 AC 224 ms
56,448 KB
testcase_52 AC 223 ms
56,412 KB
testcase_53 AC 222 ms
56,064 KB
testcase_54 AC 223 ms
56,320 KB
testcase_55 AC 225 ms
56,320 KB
testcase_56 AC 210 ms
56,192 KB
testcase_57 AC 225 ms
56,172 KB
testcase_58 AC 208 ms
56,320 KB
testcase_59 AC 68 ms
33,408 KB
testcase_60 AC 63 ms
32,636 KB
testcase_61 AC 65 ms
33,400 KB
testcase_62 AC 61 ms
33,152 KB
testcase_63 AC 58 ms
32,640 KB
testcase_64 AC 61 ms
32,256 KB
testcase_65 AC 62 ms
32,640 KB
testcase_66 AC 64 ms
33,024 KB
testcase_67 AC 63 ms
33,024 KB
testcase_68 AC 65 ms
33,124 KB
testcase_69 AC 294 ms
56,292 KB
testcase_70 AC 317 ms
56,320 KB
testcase_71 AC 318 ms
56,292 KB
testcase_72 AC 303 ms
56,576 KB
testcase_73 AC 299 ms
56,448 KB
testcase_74 AC 328 ms
56,320 KB
testcase_75 AC 291 ms
56,188 KB
testcase_76 AC 313 ms
56,320 KB
testcase_77 AC 326 ms
56,576 KB
testcase_78 AC 315 ms
212,448 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (97 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 c = NList;
        var (n, m) = (c[0], c[1]);
        var map = NArr(n);
        WriteLine(Cans(n, m, map));
    }
    static string Cans(int n, int m, int[][] map)
    {
        var dp = Enumerable.Repeat(long.MinValue, m + 1).ToArray();
        dp[0] = 0;
        for (var i = 0; i < n; ++i)
        {
            var ndp = Enumerable.Repeat(long.MinValue, m + 1).ToArray();
            for (var j = 0; j + map[i][0] <= m; ++j)
            {
                var add = (long)map[i][1] * map[i][2];
                if (dp[j] >= 0) ndp[j + map[i][0]] = Math.Max(ndp[j + map[i][0]], dp[j] + add);
            }
            for (var j = 0; j + map[i][0] <= m; ++j)
            {
                var add = (long)map[i][1] * map[i][2];
                if (ndp[j + map[i][1]] >= 0) ndp[j + map[i][0]] = Math.Max(ndp[j + map[i][0]], ndp[j + map[i][1]] + add);
            }
            for (var j = 0; j < dp.Length; ++j) dp[j] = Math.Max(dp[j], ndp[j]);
        }
        for (var i = 1; i < dp.Length; ++i) dp[i] = Math.Max(dp[i], dp[i - 1]);
        return string.Join("\n", dp.Skip(1));
    }
}
0