結果
問題 | No.1912 Get together 2 |
ユーザー | LyricalMaestro |
提出日時 | 2024-09-25 02:09:46 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,257 bytes |
コンパイル時間 | 535 ms |
コンパイル使用メモリ | 82,128 KB |
実行使用メモリ | 90,152 KB |
最終ジャッジ日時 | 2024-09-25 02:09:54 |
合計ジャッジ時間 | 7,111 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
53,500 KB |
testcase_01 | AC | 36 ms
53,668 KB |
testcase_02 | AC | 36 ms
52,828 KB |
testcase_03 | AC | 50 ms
61,680 KB |
testcase_04 | AC | 36 ms
52,644 KB |
testcase_05 | AC | 36 ms
52,484 KB |
testcase_06 | RE | - |
testcase_07 | AC | 42 ms
62,116 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
ソースコード
## https://yukicoder.me/problems/no/1912 def main(): N, M = map(int, input().split()) V = list(map(int, input().split())) S = [] for _ in range(N): S.append(input()) # 各Nについて使える箱をbitmask化する bit_sums = [0] * (2 ** N) for i in range(N): bit = 0 s = S[i] for m in range(M): if s[m] == "o": bit |= (1 << m) bit_sums[bit] += V[i] # 高速ゼータ変換で任意の箱の集合Sの中に収まる範囲でしか入らないスライムVの総和を計算 zz = [[0] * (2 ** M) for _ in range(M + 1)] for i in range(2 ** M): zz[0][i] = bit_sums[i] for j in range(M): for i in range(2 ** M): if i & (1 << j) > 0: zz[j + 1][i] = zz[j][i - (1 << j)] + zz[j][i] else: zz[j + 1][i] = zz[j][i] # dp[選ばれていない箱S]についてdpを解く dp = [0] * (2 ** M) for s in range(2 ** M): for i in range(M): if s & (1 << i) > 0: s_ = s - (1 << i) dp[s] = max(dp[s], dp[s_] + (zz[-1][s] - zz[-1][s_]) ** 2) print(dp[-1]) if __name__ == "__main__": main()