結果

問題 No.2445 奇行列式
ユーザー titiatitia
提出日時 2023-08-31 02:56:45
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 718 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 282,208 KB
最終ジャッジ日時 2025-01-03 04:23:58
合計ジャッジ時間 25,400 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,472 KB
testcase_01 AC 38 ms
271,612 KB
testcase_02 AC 35 ms
57,088 KB
testcase_03 AC 38 ms
269,824 KB
testcase_04 AC 38 ms
58,916 KB
testcase_05 AC 41 ms
268,668 KB
testcase_06 AC 42 ms
57,984 KB
testcase_07 AC 51 ms
282,208 KB
testcase_08 AC 63 ms
70,656 KB
testcase_09 AC 40 ms
53,116 KB
testcase_10 AC 40 ms
51,840 KB
testcase_11 AC 168 ms
79,104 KB
testcase_12 AC 513 ms
92,336 KB
testcase_13 AC 2,127 ms
158,588 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 690 ms
92,544 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]*A[c][j]
                DP1[i|(1<<j)]+=DP1[i]*A[c][j]
            else:
                DP0[i|(1<<j)]+=DP1[i]*A[c][j]
                DP1[i|(1<<j)]+=DP0[i]*A[c][j]

            DP0[i|(1<<j)]%=B
            DP1[i|(1<<j)]%=B

        
print(DP1[-1]%B)
0