結果
問題 | No.2825 Sum of Scores of Sets of Specified Sections |
ユーザー | tassei903 |
提出日時 | 2024-07-27 01:11:44 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 931 bytes |
コンパイル時間 | 401 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 59,252 KB |
最終ジャッジ日時 | 2024-07-27 01:11:55 |
合計ジャッジ時間 | 6,921 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 523 ms
51,712 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
ソースコード
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") ####################################################################### import numpy as np import math from math import floor def binom(n, r): return math.factorial(n) // (math.factorial(n - r) * math.factorial(r)) h, w = na() a = [na() for i in range(h)] a = np.array(a) b = [na() for i in range(h)] b = np.array(b) #print(a) #print(b) ab = np.dot(a, b.T) #print(ab) ans = 0 for i in range(1, 1 << h): pc = bin(i).count('1') A = np.array([[ab[j][k] for k in range(w) if i >> k & 1] for j in range(h) if i >> j & 1]) #print(bin(i), A, int(np.linalg.det(A))) ans += floor(0.5+np.linalg.det(A)) * binom(h-1, pc-1) print(ans)