結果

問題 No.1238 選抜クラス
ユーザー NoneNone
提出日時 2021-02-23 12:07:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 491 ms / 2,000 ms
コード長 1,979 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 112,532 KB
最終ジャッジ日時 2024-09-22 07:59:53
合計ジャッジ時間 8,656 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
60,420 KB
testcase_01 AC 43 ms
61,564 KB
testcase_02 AC 48 ms
61,920 KB
testcase_03 AC 42 ms
59,020 KB
testcase_04 AC 42 ms
60,084 KB
testcase_05 AC 41 ms
59,664 KB
testcase_06 AC 43 ms
60,028 KB
testcase_07 AC 45 ms
60,668 KB
testcase_08 AC 48 ms
61,692 KB
testcase_09 AC 51 ms
63,020 KB
testcase_10 AC 46 ms
62,344 KB
testcase_11 AC 49 ms
62,580 KB
testcase_12 AC 48 ms
62,236 KB
testcase_13 AC 47 ms
62,776 KB
testcase_14 AC 48 ms
61,324 KB
testcase_15 AC 50 ms
62,892 KB
testcase_16 AC 48 ms
61,812 KB
testcase_17 AC 491 ms
112,532 KB
testcase_18 AC 439 ms
105,660 KB
testcase_19 AC 449 ms
106,564 KB
testcase_20 AC 423 ms
104,264 KB
testcase_21 AC 357 ms
93,208 KB
testcase_22 AC 326 ms
84,276 KB
testcase_23 AC 318 ms
84,124 KB
testcase_24 AC 331 ms
84,276 KB
testcase_25 AC 327 ms
84,224 KB
testcase_26 AC 457 ms
112,168 KB
testcase_27 AC 432 ms
105,120 KB
testcase_28 AC 469 ms
104,936 KB
testcase_29 AC 427 ms
98,540 KB
testcase_30 AC 65 ms
65,308 KB
testcase_31 AC 113 ms
67,132 KB
testcase_32 AC 222 ms
82,788 KB
testcase_33 AC 45 ms
60,636 KB
testcase_34 AC 290 ms
87,540 KB
testcase_35 AC 77 ms
64,692 KB
testcase_36 AC 54 ms
62,712 KB
testcase_37 AC 71 ms
65,904 KB
testcase_38 AC 392 ms
98,508 KB
権限があれば一括ダウンロードができます

ソースコード

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+1,item+1)+1)[::-1]
        else:
            S = range(min2(K+1,item+1)+1)
        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

##########################################################
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])

W=10**4+10
K=N
dp=min_cost_with_num(single=True)
res=0
for k in range(1,N+1):
    for w in range(M*k,W+2):
        res+=dp[k][w]
        res%=MOD
print(res)
0