結果

問題 No.2445 奇行列式
ユーザー tassei903tassei903
提出日時 2023-08-25 22:13:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,043 ms / 3,000 ms
コード長 1,474 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 92,724 KB
最終ジャッジ日時 2024-06-06 16:45:55
合計ジャッジ時間 14,134 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 36 ms
52,352 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 38 ms
52,352 KB
testcase_05 AC 37 ms
52,352 KB
testcase_06 AC 38 ms
53,120 KB
testcase_07 AC 53 ms
63,232 KB
testcase_08 AC 57 ms
64,896 KB
testcase_09 AC 39 ms
52,224 KB
testcase_10 AC 35 ms
52,352 KB
testcase_11 AC 112 ms
76,700 KB
testcase_12 AC 256 ms
78,284 KB
testcase_13 AC 965 ms
84,224 KB
testcase_14 AC 1,970 ms
92,288 KB
testcase_15 AC 2,043 ms
92,724 KB
testcase_16 AC 2,010 ms
92,448 KB
testcase_17 AC 2,023 ms
92,380 KB
testcase_18 AC 2,008 ms
92,416 KB
testcase_19 AC 630 ms
92,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
def popcnt3(n):
    c = (n & 0x5555555555555555) + ((n>>1) & 0x5555555555555555)
    c = (c & 0x3333333333333333) + ((c>>2) & 0x3333333333333333)
    c = (c & 0x0f0f0f0f0f0f0f0f) + ((c>>4) & 0x0f0f0f0f0f0f0f0f)
    c = (c & 0x00ff00ff00ff00ff) + ((c>>8) & 0x00ff00ff00ff00ff)
    c = (c & 0x0000ffff0000ffff) + ((c>>16) & 0x0000ffff0000ffff)
    c = (c & 0x00000000ffffffff) + ((c>>32) & 0x00000000ffffffff)
    return c
n, mod = na()
a = [na() for i in range(n)]
dp0 = [0] * (1<<n)
dp1 = [0] * (1<<n)
dp0[0] = 1
t = [((1 << n) - (1 << j)) for j in range(n)]
for i in range(1<<n):
    pc = popcnt3(i)
    for j in range(n):
        if i >> j & 1:
            continue
        c = popcnt3(i & t[j])
        if c % 2:
            dp0[i | (1<<j)] += dp1[i] * a[pc][j] % mod
            dp0[i | (1<<j)] %= mod
            dp1[i | (1<<j)] += dp0[i] * a[pc][j] % mod
            dp1[i | (1<<j)] %= mod
        else:
            dp0[i | (1<<j)] += dp0[i] * a[pc][j] % mod
            dp0[i | (1<<j)] %= mod
            dp1[i | (1<<j)] += dp1[i] * a[pc][j] % mod
            dp1[i | (1<<j)] %= mod
#print(dp0, dp1)
print(dp1[-1])
0