結果
問題 | No.1861 Required Number |
ユーザー | ygd. |
提出日時 | 2022-03-04 22:28:26 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,392 bytes |
コンパイル時間 | 150 ms |
コンパイル使用メモリ | 81,904 KB |
実行使用メモリ | 220,236 KB |
最終ジャッジ日時 | 2024-07-18 23:06:09 |
合計ジャッジ時間 | 13,535 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
53,352 KB |
testcase_01 | AC | 40 ms
59,164 KB |
testcase_02 | AC | 33 ms
52,404 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 41 ms
59,996 KB |
testcase_08 | WA | - |
testcase_09 | AC | 43 ms
60,540 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 43 ms
61,352 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 40 ms
59,424 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
04_evil_1.txt | MLE | - |
04_evil_2.txt | MLE | - |
04_evil_3.txt | MLE | - |
04_evil_4.txt | MLE | - |
ソースコード
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] def solve(A,K): N = len(A) dp = [[0]*(K+1) for _ in range(N+1)] dp[0][0] = 1 #配るDP for i in range(N): a = A[i] for j in range(K+1): #使わない場合 dp[i+1][j] = max(dp[i+1][j], dp[i][j]) #使う場合 if j+a <= K: dp[i+1][j+a] = max(dp[i+1][j+a], dp[i][j]) used = set([]) if dp[N][K] == 0: return used v = K for i in reversed(range(N)): a = A[i] if v-a >= 0 and dp[i][v-a] == 1: used.add(i) v -= a return used def main(): N,K = map(int,input().split()) A = list(map(int,input().split())) A.sort() X = solve(A,K) #print(X) A.reverse() Y = solve(A,K) #print(Y) ans = 0 for x in X: if x in Y: ans += 1 if ans == 0: print(-1) else: print(ans) if __name__ == '__main__': main()