結果

問題 No.2429 Happiest Tabehodai Ways
ユーザー kakel-sankakel-san
提出日時 2023-08-18 22:07:33
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 1,227 bytes
コンパイル時間 2,809 ms
コンパイル使用メモリ 112,828 KB
実行使用メモリ 27,792 KB
最終ジャッジ日時 2024-06-12 07:59:55
合計ジャッジ時間 5,621 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
25,900 KB
testcase_01 AC 31 ms
27,284 KB
testcase_02 AC 31 ms
25,384 KB
testcase_03 AC 31 ms
25,372 KB
testcase_04 AC 31 ms
25,128 KB
testcase_05 AC 31 ms
25,252 KB
testcase_06 AC 31 ms
27,160 KB
testcase_07 AC 31 ms
27,036 KB
testcase_08 AC 31 ms
27,160 KB
testcase_09 AC 30 ms
25,252 KB
testcase_10 AC 32 ms
27,168 KB
testcase_11 AC 31 ms
25,004 KB
testcase_12 AC 31 ms
25,128 KB
testcase_13 AC 37 ms
25,520 KB
testcase_14 AC 38 ms
26,016 KB
testcase_15 AC 43 ms
23,472 KB
testcase_16 AC 35 ms
27,784 KB
testcase_17 AC 35 ms
25,364 KB
testcase_18 AC 38 ms
27,676 KB
testcase_19 AC 37 ms
25,500 KB
testcase_20 AC 36 ms
25,508 KB
testcase_21 AC 30 ms
24,984 KB
testcase_22 AC 31 ms
25,136 KB
testcase_23 AC 31 ms
27,296 KB
testcase_24 AC 30 ms
25,124 KB
testcase_25 AC 31 ms
25,252 KB
testcase_26 AC 30 ms
25,268 KB
testcase_27 AC 31 ms
27,212 KB
testcase_28 AC 31 ms
25,252 KB
testcase_29 AC 37 ms
25,360 KB
testcase_30 AC 38 ms
25,768 KB
testcase_31 AC 35 ms
25,492 KB
testcase_32 AC 35 ms
25,488 KB
testcase_33 AC 40 ms
27,532 KB
testcase_34 AC 38 ms
27,408 KB
testcase_35 AC 35 ms
23,736 KB
testcase_36 AC 43 ms
25,904 KB
testcase_37 AC 40 ms
25,776 KB
testcase_38 AC 40 ms
27,792 KB
testcase_39 AC 30 ms
27,164 KB
testcase_40 AC 61 ms
25,508 KB
testcase_41 AC 31 ms
27,160 KB
testcase_42 AC 55 ms
27,280 KB
testcase_43 AC 30 ms
27,164 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

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, k) = (c[0], c[1]);
        c = NList;
        var d = NList;
        var dp = Enumerable.Repeat(int.MinValue, k + 1).ToArray();
        dp[0] = 0;
        for (var i = 0; i < k; ++i) for (var j = 0; j < n; ++j)
        {
            if (i + c[j] <= k) dp[i + c[j]] = Math.Max(dp[i + c[j]], dp[i] + d[j]);
        }
        var max = dp.Max();
        var rev = new long[k + 1];
        for (var i = 0; i < rev.Length; ++i) if (dp[i] == max) rev[i] = 1;
        var mod = 998_244_353;
        for (var i = k; i > 0; --i) for (var j = 0; j < n; ++j)
        {
            if (i - c[j] >= 0 && dp[i - c[j]] + d[j] == dp[i]) rev[i - c[j]] = (rev[i - c[j]] + rev[i]) % mod;
        }
        WriteLine(max);
        WriteLine(rev[0]);
    }
}
0