結果

問題 No.1912 Get together 2
ユーザー pockynypockyny
提出日時 2023-01-28 14:51:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 203 ms / 2,000 ms
コード長 819 bytes
コンパイル時間 664 ms
コンパイル使用メモリ 69,888 KB
実行使用メモリ 20,736 KB
最終ジャッジ日時 2024-06-28 18:34:42
合計ジャッジ時間 6,969 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 23 ms
5,376 KB
testcase_09 AC 17 ms
5,376 KB
testcase_10 AC 30 ms
5,376 KB
testcase_11 AC 22 ms
5,376 KB
testcase_12 AC 33 ms
5,376 KB
testcase_13 AC 203 ms
20,608 KB
testcase_14 AC 203 ms
20,480 KB
testcase_15 AC 201 ms
20,480 KB
testcase_16 AC 198 ms
20,608 KB
testcase_17 AC 201 ms
20,608 KB
testcase_18 AC 197 ms
20,608 KB
testcase_19 AC 193 ms
20,608 KB
testcase_20 AC 193 ms
20,608 KB
testcase_21 AC 195 ms
20,480 KB
testcase_22 AC 193 ms
20,608 KB
testcase_23 AC 197 ms
20,480 KB
testcase_24 AC 192 ms
20,480 KB
testcase_25 AC 195 ms
20,608 KB
testcase_26 AC 198 ms
20,736 KB
testcase_27 AC 194 ms
20,736 KB
testcase_28 AC 53 ms
5,376 KB
testcase_29 AC 50 ms
5,376 KB
testcase_30 AC 57 ms
5,376 KB
testcase_31 AC 49 ms
5,376 KB
testcase_32 AC 52 ms
5,376 KB
testcase_33 AC 191 ms
20,608 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 193 ms
20,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>

using namespace std;
typedef long long ll;
ll dp[1<<20],fz[1<<20],val[200010],inf = 1000000000000000000;
int main(){
    int i,j,k,n,m; cin >> n >> m;
    for(i=0;i<n;i++) cin >> val[i];
    for(i=0;i<n;i++){
        string s; cin >> s;
        int x = 0;
        for(j=0;j<m;j++){
            if(s[j]=='o') x += 1<<j;
        }
        fz[x] += val[i];
    }
    for(j=0;j<m;j++){
        for(i=0;i<(1<<m);i++){
            if(i>>j&1) fz[i] += fz[i^(1<<j)];
        }
    }
    for(i=0;i<(1<<m);i++) dp[i] = -inf;
    dp[0] = 0;
    for(i=1;i<(1<<m);i++){
        for(j=0;j<m;j++){
            if(i>>j&1){
                ll num = fz[i] - fz[i^(1<<j)];
                dp[i] = max(dp[i],dp[i^(1<<j)] + num*num);
            }
        }
    }
    cout << dp[(1<<m) - 1] << "\n";
}
0