結果

問題 No.137 貯金箱の焦り
ユーザー chineristACchineristAC
提出日時 2022-02-27 00:43:06
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,490 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 317,624 KB
最終ジャッジ日時 2024-07-04 22:10:55
合計ジャッジ時間 8,709 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
56,448 KB
testcase_01 AC 45 ms
56,192 KB
testcase_02 AC 71 ms
74,496 KB
testcase_03 AC 45 ms
55,936 KB
testcase_04 AC 141 ms
77,776 KB
testcase_05 AC 46 ms
56,704 KB
testcase_06 AC 111 ms
77,212 KB
testcase_07 AC 84 ms
77,056 KB
testcase_08 AC 88 ms
76,928 KB
testcase_09 AC 127 ms
77,248 KB
testcase_10 AC 91 ms
77,240 KB
testcase_11 AC 46 ms
55,808 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

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()

dp = {0:1}
for k in range(60):
    t = 2**k
    for j in range(N):
        ndp = {s:dp[s] for s in dp}
        for s in dp:
            if s+A[j]*t > M:
                continue
            if s+A[j]*t not in ndp:
                ndp[s+A[j]*t] = 0
            ndp[s+A[j]*t] += dp[s]
            ndp[s+A[j]*t] %= mod
        dp = ndp
    dp = {s:dp[s] for s in dp if s%(2*t)==M%(2*t)}

if M in dp:
    print(dp[M])
else:
    print(0)
0