結果

問題 No.1710 Minimum OR is X
ユーザー chineristACchineristAC
提出日時 2021-05-25 20:44:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 527 ms / 2,000 ms
コード長 1,415 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 85,724 KB
最終ジャッジ日時 2024-09-17 16:55:38
合計ジャッジ時間 8,403 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
69,580 KB
testcase_01 AC 70 ms
71,196 KB
testcase_02 AC 223 ms
85,096 KB
testcase_03 AC 68 ms
71,264 KB
testcase_04 AC 72 ms
69,988 KB
testcase_05 AC 70 ms
70,372 KB
testcase_06 AC 69 ms
70,096 KB
testcase_07 AC 70 ms
69,964 KB
testcase_08 AC 286 ms
85,276 KB
testcase_09 AC 258 ms
85,236 KB
testcase_10 AC 388 ms
84,824 KB
testcase_11 AC 321 ms
85,144 KB
testcase_12 AC 305 ms
85,352 KB
testcase_13 AC 285 ms
85,012 KB
testcase_14 AC 297 ms
85,352 KB
testcase_15 AC 236 ms
85,288 KB
testcase_16 AC 287 ms
85,372 KB
testcase_17 AC 248 ms
84,732 KB
testcase_18 AC 461 ms
85,380 KB
testcase_19 AC 411 ms
85,376 KB
testcase_20 AC 413 ms
85,000 KB
testcase_21 AC 517 ms
85,724 KB
testcase_22 AC 527 ms
85,436 KB
testcase_23 AC 70 ms
70,600 KB
testcase_24 AC 69 ms
69,936 KB
testcase_25 AC 202 ms
83,692 KB
testcase_26 AC 74 ms
72,012 KB
testcase_27 AC 78 ms
74,224 KB
testcase_28 AC 154 ms
84,732 KB
testcase_29 AC 124 ms
83,832 KB
testcase_30 AC 71 ms
72,276 KB
testcase_31 AC 77 ms
74,880 KB
testcase_32 AC 154 ms
84,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def cmb(n, r, mod):
    if ( r<0 or r>n ):
        return 0
    r = min(r, n-r)
    return g1[n] * g2[r] * g2[n-r] % mod

mod = 998244353
N = 2*10**5
g1 = [1]*(N+1)
g2 = [1]*(N+1)
inverse = [1]*(N+1)

for i in range( 2, N + 1 ):
    g1[i]=( ( g1[i-1] * i ) % mod )
    inverse[i]=( ( -inverse[mod % i] * (mod//i) ) % mod )
    g2[i]=( (g2[i-1] * inverse[i]) % mod )
inverse[0]=0

pow_2 = [1 for i in range(N)]
for i in range(1,N):
    pow_2[i] = 2 * pow_2[i-1] % mod


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

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

N,M,K = mi()
X = input()
dp = [[0 for j in range(N+1)] for bit in range(M+1)]
dp[M][N] = 1
for bit in range(M-1,-1,-1):
    if X[M-1-bit]=="0":
        #bit目が立っているのアがrest-K個以下
        for rest in range(N+1):
            for k in range(rest-K+1):
                dp[bit][rest-k] += dp[bit+1][rest] * cmb(rest,k,mod) * pow_2[k*bit]
                dp[bit][rest-k] %= mod
    else:
        #bit目が立っているのがrest-K+1個以上
        for rest in range(N+1):
            for k in range(rest-K+1,rest+1):
                dp[bit][rest] += dp[bit+1][rest] * cmb(rest,k,mod)
                dp[bit][rest] %= mod

print(sum(dp[0])%mod)
0