結果

問題 No.437 cwwゲーム
ユーザー confconf
提出日時 2016-10-28 23:14:09
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,769 bytes
コンパイル時間 1,145 ms
コンパイル使用メモリ 66,328 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-03 08:06:01
合計ジャッジ時間 1,972 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
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 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 RE -
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 2 ms
5,376 KB
testcase_24 WA -
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 WA -
testcase_39 AC 2 ms
5,376 KB
testcase_40 WA -
testcase_41 AC 1 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
using namespace std;
typedef pair<int,int> P;
int memo[1LL<<12];

int main(){
    int64_t N;
    int L=0;
    cin>>N;
    int a[12];
    while(N){
        a[L++]=N%10;
        N/=10;
    }
    int ans=0;
    vector<int> V3,V6,V9;
    if(L>=3){
        int comb=(1<<3)-1;
        int ans=0;
        while(comb<(1<<L)){
            int CWW[3],cww=0;
            for(int i=0;i<L;i++){
                if(comb&(1<<i))CWW[cww++]=a[i];
            }
            if(CWW[0]==CWW[1]&&CWW[1]!=CWW[2]&&CWW[2]){
                memo[comb]=CWW[2]*100+CWW[1]*10+CWW[0];
                ans=max(ans,memo[comb]);
                V3.push_back(comb);
            }
            int x = comb&-comb, y=comb+x;
            comb=((comb&~y)/x>>1)|y;
        }
    }
    if(L>=6){
        for(int i=0;i<V3.size();i++){
            for(int j=i+1;j<V3.size();j++){
                if(V3[i]&V3[j]) continue;
                int sum=memo[V3[i]]+memo[V3[j]];
                memo[V3[i]|V3[j]]=max(memo[V3[i]|V3[j]],sum);
                V6.push_back(V3[i]|V3[j]);
                ans=max(ans,sum);
            }
        }
    }
    if(L>=9){
        for(auto v3:V3){
            for(auto v6:V6){
                if(v3&v6) continue;
                int sum=memo[v3]+memo[v6];
                memo[v3|v6]=max(memo[v3|v6],sum);
                V9.push_back(v3|v6);
                ans=max(sum,ans);
            }
        }
    }
    if(L==12){
        for(auto v3:V3){
            for(auto v9:V9){
                if(v3&v9)continue;
                int sum=memo[v3]+memo[v9];
                memo[v3|v9]=max(memo[v3|v9],sum);
                ans=max(sum,ans);
            }
        }
    }
    cout<<ans<<endl;
    return 0;
}
0