結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 43 ms
51,840 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 39 ms
52,352 KB
testcase_05 AC 40 ms
52,096 KB
testcase_06 AC 47 ms
52,352 KB
testcase_07 AC 53 ms
61,824 KB
testcase_08 AC 57 ms
62,976 KB
testcase_09 AC 46 ms
51,968 KB
testcase_10 AC 46 ms
51,968 KB
testcase_11 AC 94 ms
69,376 KB
testcase_12 AC 164 ms
78,976 KB
testcase_13 AC 484 ms
88,064 KB
testcase_14 AC 1,076 ms
100,352 KB
testcase_15 AC 1,074 ms
100,480 KB
testcase_16 AC 982 ms
100,480 KB
testcase_17 AC 944 ms
100,480 KB
testcase_18 AC 947 ms
100,608 KB
testcase_19 AC 964 ms
100,352 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