結果

問題 No.1912 Get together 2
ユーザー chineristACchineristAC
提出日時 2021-10-06 18:33:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 928 ms / 2,000 ms
コード長 956 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 109,072 KB
最終ジャッジ日時 2024-06-24 01:22:08
合計ジャッジ時間 18,174 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,344 KB
testcase_01 AC 38 ms
52,588 KB
testcase_02 AC 37 ms
53,568 KB
testcase_03 AC 48 ms
63,012 KB
testcase_04 AC 38 ms
52,344 KB
testcase_05 AC 38 ms
52,348 KB
testcase_06 AC 39 ms
53,120 KB
testcase_07 AC 47 ms
61,728 KB
testcase_08 AC 95 ms
80,596 KB
testcase_09 AC 85 ms
78,384 KB
testcase_10 AC 101 ms
82,264 KB
testcase_11 AC 90 ms
80,004 KB
testcase_12 AC 107 ms
82,384 KB
testcase_13 AC 912 ms
108,348 KB
testcase_14 AC 906 ms
109,072 KB
testcase_15 AC 897 ms
108,448 KB
testcase_16 AC 904 ms
108,460 KB
testcase_17 AC 914 ms
108,632 KB
testcase_18 AC 889 ms
108,680 KB
testcase_19 AC 900 ms
108,472 KB
testcase_20 AC 877 ms
108,600 KB
testcase_21 AC 889 ms
108,396 KB
testcase_22 AC 928 ms
108,484 KB
testcase_23 AC 857 ms
108,672 KB
testcase_24 AC 856 ms
108,692 KB
testcase_25 AC 850 ms
108,824 KB
testcase_26 AC 859 ms
108,368 KB
testcase_27 AC 855 ms
108,452 KB
testcase_28 AC 116 ms
90,992 KB
testcase_29 AC 100 ms
90,776 KB
testcase_30 AC 114 ms
90,828 KB
testcase_31 AC 101 ms
90,580 KB
testcase_32 AC 97 ms
91,084 KB
testcase_33 AC 839 ms
108,516 KB
testcase_34 AC 37 ms
52,252 KB
testcase_35 AC 846 ms
108,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def zeta_to_small(N,A):
    res = [a for a in A]
    for i in range(N):
        t = 2**i
        for j in range(1<<N):
            if j&t:
                res[j-t] += res[j]
    return res

def solve(N,M,V,S):
    box = [0 for i in range(1<<M)]

    for i in range(N):
        t = 0
        for j in range(M):
            if S[i][j]=="x":
                t += 1<<j
        box[t] += V[i]

    zeta_box = zeta_to_small(M,box)

    dp = [0 for S in range(2**M)]
    ALL = 2**M-1
    for S in range(1,2**M):
        done = ALL - S
        for j in range(M):
            if S>>j & 1:
                tmp = zeta_box[done] - zeta_box[done + 2**j]
                dp[S] = max(dp[S],dp[S-2**j]+tmp*tmp)

    return dp[-1]

import sys

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

N,M = map(int,input().split())
V = list(map(int,input().split()))
S = [input() for i in range(N)]
print(solve(N,M,V,S))
0