結果

問題 No.1912 Get together 2
ユーザー shotoyooshotoyoo
提出日時 2022-04-05 00:42:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 743 ms / 2,000 ms
コード長 1,079 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 107,260 KB
最終ジャッジ日時 2024-06-24 01:22:32
合計ジャッジ時間 14,482 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,904 KB
testcase_01 AC 37 ms
52,696 KB
testcase_02 AC 37 ms
53,112 KB
testcase_03 AC 45 ms
61,692 KB
testcase_04 AC 38 ms
52,200 KB
testcase_05 AC 36 ms
52,548 KB
testcase_06 AC 38 ms
53,492 KB
testcase_07 AC 46 ms
61,580 KB
testcase_08 AC 91 ms
79,148 KB
testcase_09 AC 87 ms
77,552 KB
testcase_10 AC 106 ms
80,956 KB
testcase_11 AC 96 ms
78,796 KB
testcase_12 AC 115 ms
81,172 KB
testcase_13 AC 734 ms
106,944 KB
testcase_14 AC 735 ms
107,012 KB
testcase_15 AC 740 ms
106,984 KB
testcase_16 AC 743 ms
106,832 KB
testcase_17 AC 738 ms
106,836 KB
testcase_18 AC 709 ms
106,844 KB
testcase_19 AC 707 ms
106,848 KB
testcase_20 AC 711 ms
106,900 KB
testcase_21 AC 694 ms
107,060 KB
testcase_22 AC 708 ms
106,832 KB
testcase_23 AC 536 ms
107,024 KB
testcase_24 AC 545 ms
107,260 KB
testcase_25 AC 542 ms
107,148 KB
testcase_26 AC 540 ms
106,864 KB
testcase_27 AC 539 ms
106,916 KB
testcase_28 AC 135 ms
89,264 KB
testcase_29 AC 119 ms
89,468 KB
testcase_30 AC 144 ms
89,192 KB
testcase_31 AC 114 ms
89,352 KB
testcase_32 AC 119 ms
89,440 KB
testcase_33 AC 640 ms
106,848 KB
testcase_34 AC 37 ms
53,560 KB
testcase_35 AC 680 ms
106,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))


def zeta_sub(val, n):
    """
    given: そのbitの出席パターン回数
    compute: 各bitのsubsetについて、countの総和
    """
    # len(val)==2^n
    out = val[:]
    for i in range(n):
        for j in range(1<<n):
            if j>>i&1:
                out[j] += out[j^(1<<i)]
    return out

n,m = list(map(int, input().split()))
assert 1<=n<=10**5 and 1<=m<=20
vs = list(map(int, input().split()))
assert len(vs)==n
vals = [0]*(1<<m)
for i in range(n):
    assert 1<=vs[i]<=10**4
    s = input()
    assert len(s)==m and "o" in s
    b = int(s.replace("o", "1").replace("x", "0")[::-1], 2)
    vals[b] += vs[i]
size = zeta_sub(vals, m)
dp = [0]*(1<<m)
for b in range(1<<m):
    val = dp[b]
    for i in range(m):
        if b>>i&1:
            continue
        nb = b|(1<<i)
        dp[nb] = max(dp[nb], val + (size[nb] - size[b])**2)
ans = dp[(1<<m)-1]
print(ans)
0