結果

問題 No.1861 Required Number
ユーザー ygd.ygd.
提出日時 2022-03-05 11:34:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 517 ms / 2,500 ms
コード長 1,414 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 227,176 KB
最終ジャッジ日時 2024-07-19 12:11:11
合計ジャッジ時間 14,584 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 41 ms
57,856 KB
testcase_02 AC 35 ms
52,224 KB
testcase_03 AC 485 ms
226,816 KB
testcase_04 AC 517 ms
227,176 KB
testcase_05 AC 35 ms
51,840 KB
testcase_06 AC 35 ms
51,968 KB
testcase_07 AC 41 ms
58,240 KB
testcase_08 AC 49 ms
63,232 KB
testcase_09 AC 41 ms
58,624 KB
testcase_10 AC 46 ms
62,336 KB
testcase_11 AC 49 ms
62,592 KB
testcase_12 AC 53 ms
60,672 KB
testcase_13 AC 57 ms
62,208 KB
testcase_14 AC 49 ms
62,464 KB
testcase_15 AC 49 ms
62,848 KB
testcase_16 AC 40 ms
58,496 KB
testcase_17 AC 48 ms
62,080 KB
testcase_18 AC 49 ms
62,720 KB
testcase_19 AC 51 ms
63,360 KB
testcase_20 AC 51 ms
62,848 KB
testcase_21 AC 46 ms
62,208 KB
testcase_22 AC 49 ms
62,464 KB
testcase_23 AC 48 ms
63,616 KB
testcase_24 AC 233 ms
129,536 KB
testcase_25 AC 484 ms
204,672 KB
testcase_26 AC 126 ms
89,984 KB
testcase_27 AC 205 ms
112,256 KB
testcase_28 AC 245 ms
132,480 KB
testcase_29 AC 186 ms
108,288 KB
testcase_30 AC 90 ms
83,584 KB
testcase_31 AC 491 ms
204,032 KB
testcase_32 AC 99 ms
87,984 KB
testcase_33 AC 352 ms
158,352 KB
testcase_34 AC 408 ms
181,248 KB
testcase_35 AC 428 ms
181,140 KB
testcase_36 AC 173 ms
109,824 KB
testcase_37 AC 250 ms
130,048 KB
testcase_38 AC 419 ms
181,120 KB
testcase_39 AC 273 ms
135,168 KB
testcase_40 AC 480 ms
203,776 KB
testcase_41 AC 465 ms
204,416 KB
testcase_42 AC 390 ms
180,864 KB
testcase_43 AC 240 ms
131,748 KB
testcase_44 AC 35 ms
51,968 KB
04_evil_1.txt MLE -
04_evil_2.txt MLE -
04_evil_3.txt MLE -
04_evil_4.txt MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline
input = sys.stdin.buffer.readline #文字列はダメ
#sys.setrecursionlimit(1000000)
#import bisect
#import itertools
#import random
#from heapq import heapify, heappop, heappush
#from collections import defaultdict 
#from collections import deque
#import copy
#import math
#from functools import lru_cache
#@lru_cache(maxsize=None)
#MOD = pow(10,9) + 7
#MOD = 998244353
#dx = [1,0,-1,0]
#dy = [0,1,0,-1]


N,K = map(int,input().split())
A = list(map(int,input().split()))
#dpl[i][j]:左からi番目まで見て和がjを作れるか0/1
dpl = [[0]*(K+1) for _ in range(N+1)]
dpl[0][0] = 1
#dpr[i][j]:右からi番目まで見て和がjを作れるか0/1
dpr = [[0]*(K+1) for _ in range(N+1)]
dpr[0][0] = 1
#配るDP
for i in range(N):
    a = A[i]
    for j in range(K+1):
        if dpl[i][j] == 0: continue
        #使わない
        dpl[i+1][j] |= dpl[i][j]
        #使う
        if j+a <= K:
            dpl[i+1][j+a] |= dpl[i][j]
    a = A[N-1-i]
    for j in range(K+1):
        if dpr[i][j] == 0: continue
        #使わない
        dpr[i+1][j] |= dpr[i][j]
        #使う
        if j+a <= K:
            dpr[i+1][j+a] |= dpr[i][j]
if dpl[N][K] == 0:
    print(-1);exit()
#print(dpl)
#print(dpr)
ans = 0
for i in range(N):
    for x in range(K+1):
        if dpl[i][x] == 1 and dpr[N-1-i][K-x] == 1:
            break
    else:
        ans += 1
print(ans)
0