結果

問題 No.2711 Connecting Lights
ユーザー dp_ijkdp_ijk
提出日時 2024-06-22 14:04:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,269 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 67,012 KB
最終ジャッジ日時 2024-06-22 14:04:34
合計ジャッジ時間 2,796 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,240 KB
testcase_01 AC 41 ms
60,220 KB
testcase_02 AC 49 ms
62,264 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 45 ms
62,196 KB
testcase_06 AC 50 ms
65,180 KB
testcase_07 AC 40 ms
59,600 KB
testcase_08 AC 48 ms
61,668 KB
testcase_09 AC 62 ms
67,012 KB
testcase_10 AC 57 ms
65,200 KB
testcase_11 AC 58 ms
65,900 KB
testcase_12 AC 49 ms
66,460 KB
testcase_13 AC 50 ms
66,592 KB
testcase_14 AC 46 ms
62,076 KB
testcase_15 AC 50 ms
66,492 KB
testcase_16 AC 40 ms
61,380 KB
testcase_17 AC 41 ms
61,500 KB
testcase_18 AC 50 ms
61,824 KB
testcase_19 AC 59 ms
66,604 KB
testcase_20 AC 48 ms
66,532 KB
testcase_21 AC 41 ms
62,156 KB
testcase_22 AC 41 ms
60,948 KB
testcase_23 AC 36 ms
53,872 KB
testcase_24 AC 60 ms
66,132 KB
testcase_25 AC 58 ms
65,448 KB
testcase_26 AC 58 ms
66,188 KB
testcase_27 AC 57 ms
65,204 KB
testcase_28 AC 59 ms
66,616 KB
testcase_29 AC 58 ms
66,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def full(shape, fill_value):
   if len(shape) == 1: return [fill_value] * shape[0]
   return [full(shape[1:], fill_value) for _ in range(shape[0])]


def vector(seq: list[int]|tuple[int, ...]):
   return [[x] for x in seq]


def matmul(A, B, MOD):
   X = len(A)
   Y = len(A[0])
   assert Y == len(B)
   Z = len(B[0])
   tB = [[B[j][k] for j in range(Y)] for k in range(Z)]
   res = []
   for i in range(X):
      nrow = [0]*Z
      Ai = A[i]
      for k in range(Z):
         tBk = tB[k]
         for j in range(Y):
            term = Ai[j] * tBk[j]
            nrow[k] += term
            nrow[k] %= MOD
      res.append(nrow)
   return res


def matpow(base, exp, MOD):
   assert len(base) == len(base[0])
   N = len(base)
   res = [[int(i == j) for j in range(N)] for i in range(N)]
   while exp:
      if exp&1:
         res = matmul(res, base, MOD)
      base = matmul(base, base, MOD)
      exp >>= 1
   return res

MOD = 998_244_353
N, M, K = map(int, input().split())

mat = full((1<<N, 1<<N), 0)
for S in range(1<<N):
   for nS in range(1<<N):
      if int.bit_count(S&nS) < K:
         continue
      mat[nS][S] += 1

V = vector([0]*((1<<N) - 1) + [1])
mat = matpow(mat, M, MOD)
V = matmul(mat, V, MOD)

ans = sum(row[0] for row in V)
ans %= MOD

print(ans)
0