結果

問題 No.2445 奇行列式
ユーザー 👑 KazunKazun
提出日時 2023-08-25 22:49:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 952 ms / 3,000 ms
コード長 959 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 100,944 KB
最終ジャッジ日時 2024-06-06 17:31:46
合計ジャッジ時間 7,553 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,440 KB
testcase_01 AC 36 ms
53,460 KB
testcase_02 AC 37 ms
52,452 KB
testcase_03 AC 36 ms
52,520 KB
testcase_04 AC 37 ms
52,332 KB
testcase_05 AC 37 ms
52,592 KB
testcase_06 AC 36 ms
53,628 KB
testcase_07 AC 46 ms
62,152 KB
testcase_08 AC 48 ms
63,596 KB
testcase_09 AC 35 ms
52,448 KB
testcase_10 AC 36 ms
53,080 KB
testcase_11 AC 73 ms
69,908 KB
testcase_12 AC 128 ms
78,940 KB
testcase_13 AC 399 ms
88,172 KB
testcase_14 AC 928 ms
100,724 KB
testcase_15 AC 952 ms
100,596 KB
testcase_16 AC 929 ms
100,944 KB
testcase_17 AC 923 ms
100,484 KB
testcase_18 AC 930 ms
100,640 KB
testcase_19 AC 930 ms
100,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N, B = map(int, input().split())

    A = [None] * N
    for i in range(N):
        A[i] = list(map(int, input().split()))
        A[i] = [a % B for a in A[i]]

    popcount = [0] * (1 << N)
    for S in range(1, 1 << N):
        x = S & (-S)
        popcount[S] = popcount[S ^ x] + 1

    bit = lambda S,k : (S>>k) & 1
    DP0 = [0] * (1 << N); DP0[0] = 1
    DP1 = [0] * (1 << N)

    for S in range(1 << N):
        t = 0
        i = popcount[S]
        for k in range(N):
            if not bit(S, k):
                T = S | (1 << k)
                if t % 2 == 0:
                    DP0[T] += DP0[S] * A[i][k]; DP0[T] %= B
                    DP1[T] += DP1[S] * A[i][k]; DP1[T] %= B
                else:
                    DP0[T] += DP1[S] * A[i][k]; DP0[T] %= B
                    DP1[T] += DP0[S] * A[i][k]; DP1[T] %= B
                t += 1
    return DP1[-1]

#==================================================
print(solve())
0