結果

問題 No.2445 奇行列式
ユーザー titiatitia
提出日時 2023-08-31 02:59:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,923 ms / 3,000 ms
コード長 734 bytes
コンパイル時間 467 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 92,724 KB
最終ジャッジ日時 2024-06-11 01:16:26
合計ジャッジ時間 13,491 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,224 KB
testcase_01 AC 34 ms
52,608 KB
testcase_02 AC 35 ms
52,224 KB
testcase_03 AC 36 ms
52,352 KB
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 36 ms
52,736 KB
testcase_06 AC 37 ms
52,864 KB
testcase_07 AC 46 ms
61,568 KB
testcase_08 AC 54 ms
65,664 KB
testcase_09 AC 35 ms
52,096 KB
testcase_10 AC 34 ms
52,224 KB
testcase_11 AC 109 ms
76,672 KB
testcase_12 AC 258 ms
78,532 KB
testcase_13 AC 923 ms
84,480 KB
testcase_14 AC 1,923 ms
92,688 KB
testcase_15 AC 1,918 ms
92,724 KB
testcase_16 AC 1,919 ms
92,468 KB
testcase_17 AC 1,919 ms
92,672 KB
testcase_18 AC 1,915 ms
92,320 KB
testcase_19 AC 628 ms
92,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 転倒数を持つDP

import sys
input = sys.stdin.readline

N,B=map(int,input().split())
A=[list(map(int,input().split())) for i in range(N)]

DP0=[0]*(1<<N)
DP1=[0]*(1<<N)

DP0[0]=1

for i in range(1<<N):
    c=0
    for j in range(N):
        if i & (1<<j) !=0:
            c+=1
            
    count=0
    for j in range(N-1,-1,-1):
        if i & (1<<j) != 0:
            count+=1

        else:
            if count%2==0:
                DP0[i|(1<<j)]=(DP0[i|(1<<j)]+DP0[i]*A[c][j]%B)%B
                DP1[i|(1<<j)]=(DP1[i|(1<<j)]+DP1[i]*A[c][j]%B)%B
            else:
                DP0[i|(1<<j)]=(DP0[i|(1<<j)]+DP1[i]*A[c][j]%B)%B
                DP1[i|(1<<j)]=(DP1[i|(1<<j)]+DP0[i]*A[c][j]%B)%B
        
print(DP1[-1]%B)
0