結果

問題 No.1238 選抜クラス
ユーザー NoneNone
提出日時 2021-02-23 11:51:35
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,950 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 114,532 KB
最終ジャッジ日時 2024-09-22 07:43:53
合計ジャッジ時間 4,954 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
59,624 KB
testcase_01 AC 40 ms
54,020 KB
testcase_02 AC 46 ms
61,068 KB
testcase_03 AC 39 ms
53,312 KB
testcase_04 AC 38 ms
53,044 KB
testcase_05 AC 39 ms
53,500 KB
testcase_06 AC 38 ms
53,200 KB
testcase_07 AC 42 ms
59,500 KB
testcase_08 AC 48 ms
62,876 KB
testcase_09 AC 49 ms
61,988 KB
testcase_10 AC 42 ms
59,408 KB
testcase_11 AC 52 ms
64,324 KB
testcase_12 AC 47 ms
62,008 KB
testcase_13 AC 45 ms
60,692 KB
testcase_14 AC 49 ms
62,840 KB
testcase_15 AC 59 ms
66,796 KB
testcase_16 AC 49 ms
62,732 KB
testcase_17 TLE -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def min_cost_with_num(single=False,INF=float("inf")):
    """
    :param larger_num:     False = (個数 = K)の時の最小価値
                           True  = (個数 >= K)の時の最小価値
    :param larger_weight:  False = (重さ = W)の時の最小価値
                           True  = (重さ >= W)の時の最小価値
    :param single:         False = 重複あり

    dp[num (<=K)][weight (<=W)] = 個数と重さを固定した時の最小価値
    """
    dp_max = 0   # 総和価値の最大値
    dp = [[dp_max]*(W+2) for _ in range(K+2)]
    dp[0][0] = 1   # 重さ 0 の時は価値 0

    for item in range(N):
        if single:
            S = range(min2(K,item+1)+2)[::-1]
        else:
            S = range(min2(K,item+1)+2)
        for num in S:
            if num==0:
                dp[min2(num+1,K+1)][min2(weight_list[item],W+1)]+=dp[0][0]
            else:
                for weight in range(W+2):
                    if dp[num][weight]!=dp_max:
                        dp[min2(num+1,K+1)][min2(weight+weight_list[item],W+1)]+=dp[num][weight]
    return dp[K][W]+dp[K][W+1]

##########################################################
def max2(x,y):
    return x if x > y else y

def min2(x,y):
    return x if x < y else y
##########################################################
def example():
    global input
    example = iter(
        """
2 2
1 3




        """
            .strip().split("\n"))
    input = lambda: next(example)
##########################################################
import sys
from bisect import *
input = sys.stdin.readline

# example()
MOD=10**9+7

N,M=map(int, input().split())
A=list(map(int, input().split()))

weight_list = []
for i in range(N):
    """ cost と weight が逆転して入力されている場合有り """
    weight_list.append(A[i])

res=0
for K in range(1,N+1):
    W=M*K
    cnt=min_cost_with_num(single=True)
    res+=cnt
    res%=MOD
print(res)
0