結果

問題 No.137 貯金箱の焦り
ユーザー chineristACchineristAC
提出日時 2022-02-27 00:55:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 987 ms / 5,000 ms
コード長 1,374 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 93,200 KB
最終ジャッジ日時 2024-07-04 22:23:27
合計ジャッジ時間 6,986 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
66,644 KB
testcase_01 AC 51 ms
63,616 KB
testcase_02 AC 59 ms
66,700 KB
testcase_03 AC 45 ms
57,456 KB
testcase_04 AC 69 ms
69,160 KB
testcase_05 AC 61 ms
66,864 KB
testcase_06 AC 69 ms
68,296 KB
testcase_07 AC 62 ms
66,932 KB
testcase_08 AC 63 ms
68,052 KB
testcase_09 AC 63 ms
69,784 KB
testcase_10 AC 62 ms
67,516 KB
testcase_11 AC 45 ms
56,856 KB
testcase_12 AC 987 ms
93,200 KB
testcase_13 AC 132 ms
70,468 KB
testcase_14 AC 587 ms
80,856 KB
testcase_15 AC 517 ms
80,376 KB
testcase_16 AC 459 ms
79,632 KB
testcase_17 AC 208 ms
74,184 KB
testcase_18 AC 430 ms
80,712 KB
testcase_19 AC 518 ms
80,252 KB
testcase_20 AC 61 ms
67,744 KB
testcase_21 AC 276 ms
77,508 KB
testcase_22 AC 91 ms
71,564 KB
testcase_23 AC 84 ms
72,260 KB
testcase_24 AC 162 ms
73,740 KB
testcase_25 AC 340 ms
77,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class DualSegmentTree:
    def __init__(self, n, segfunc, ide_ele):
        self.segfunc = segfunc
        self.ide_ele = ide_ele
        self.num = 1 << (n - 1).bit_length()
        self.tree = [ide_ele] * 2 * self.num

    def update(self,l,r,x):
        l += self.num
        r += self.num
        while l < r:
            if l & 1:
                self.tree[l] = self.segfunc(self.tree[l],x)
                l += 1
            if r & 1:
                self.tree[r-1] = self.segfunc(self.tree[r-1],x)
            l >>= 1
            r >>= 1

    def __getitem__(self,idx):
        idx += self.num
        res = self.ide_ele
        while idx:
            res = self.segfunc(res,self.tree[idx])
            idx>>=1
        return res

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import log,gcd

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

mod = 1234567891

N,M = mi()
A = li()
S = sum(A)

dp = [0] * (2*S+1)
dp[0] = 1
while M:
    for i in range(N):
        for s in range(2*S+1-A[i])[::-1]:
            dp[s+A[i]] += dp[s]
            dp[s+A[i]] %= mod
    ndp = [0] * (2*S+1)
    for s in range(2*S+1):
        if s&1==M&1:
            ndp[s>>1] = dp[s]
    dp = ndp
    M >>= 1

print(dp[0])
0