結果

問題 No.2445 奇行列式
ユーザー ShirotsumeShirotsume
提出日時 2023-06-02 19:43:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,078 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 11,092 KB
実行使用メモリ 54,156 KB
最終ジャッジ日時 2023-08-28 02:25:37
合計ジャッジ時間 7,944 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
9,260 KB
testcase_01 AC 22 ms
9,232 KB
testcase_02 AC 23 ms
9,152 KB
testcase_03 AC 22 ms
9,232 KB
testcase_04 AC 22 ms
9,084 KB
testcase_05 AC 23 ms
9,248 KB
testcase_06 AC 23 ms
9,300 KB
testcase_07 AC 24 ms
9,236 KB
testcase_08 AC 26 ms
9,152 KB
testcase_09 AC 22 ms
9,228 KB
testcase_10 AC 22 ms
9,320 KB
testcase_11 AC 506 ms
12,060 KB
testcase_12 AC 2,194 ms
20,356 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1

n, mod = mi()
A = [[v % mod for v in li()] for _ in range(n)]
ppcnt = [0] * (1 << n)
for i in range(1, 1<<n):
    ppcnt[i] = ppcnt[i//2] + i % 2

dpsum = [[0] * (1<<n) for _ in range(2)]
dpsum[0][0] = 1
for bit in range(1<<n):
    cnt = ppcnt[bit]
    for i in range(n):
        if 1 & (bit >> i):
            cnt -= 1
        if not(1 & (bit >> i)):
                if cnt % 2:
                    dpsum[1][bit | (1 << i)] += dpsum[0][bit] * A[ppcnt[bit]][i]
                    dpsum[0][bit | (1 << i)] += dpsum[1][bit] * A[ppcnt[bit]][i]


                else:
                    dpsum[1][bit | (1 << i)] += dpsum[1][bit] * A[ppcnt[bit]][i]
                    dpsum[0][bit | (1 << i)] += dpsum[0][bit] * A[ppcnt[bit]][i]
                dpsum[0][bit | (1 << i)] %= mod
                dpsum[1][bit | (1 << i)] %= mod




print(dpsum[-1][-1])
0