結果

問題 No.2071 Shift and OR
ユーザー hiro71687khiro71687k
提出日時 2023-03-03 09:20:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 1,374 bytes
コンパイル時間 4,403 ms
コンパイル使用メモリ 264,604 KB
実行使用メモリ 12,160 KB
最終ジャッジ日時 2024-09-17 21:52:50
合計ジャッジ時間 7,109 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
6,812 KB
testcase_01 AC 9 ms
6,820 KB
testcase_02 AC 14 ms
6,940 KB
testcase_03 AC 17 ms
7,936 KB
testcase_04 AC 16 ms
7,296 KB
testcase_05 AC 23 ms
9,344 KB
testcase_06 AC 15 ms
7,424 KB
testcase_07 AC 13 ms
6,944 KB
testcase_08 AC 16 ms
7,296 KB
testcase_09 AC 15 ms
7,296 KB
testcase_10 AC 15 ms
7,296 KB
testcase_11 AC 26 ms
9,984 KB
testcase_12 AC 26 ms
9,984 KB
testcase_13 AC 22 ms
9,344 KB
testcase_14 AC 5 ms
6,940 KB
testcase_15 AC 19 ms
8,320 KB
testcase_16 AC 19 ms
8,320 KB
testcase_17 AC 25 ms
9,984 KB
testcase_18 AC 9 ms
6,940 KB
testcase_19 AC 27 ms
10,624 KB
testcase_20 AC 27 ms
10,496 KB
testcase_21 AC 33 ms
12,160 KB
testcase_22 AC 29 ms
11,008 KB
testcase_23 AC 53 ms
6,944 KB
testcase_24 AC 7 ms
6,944 KB
testcase_25 AC 26 ms
6,944 KB
testcase_26 AC 30 ms
6,940 KB
testcase_27 AC 3 ms
6,944 KB
testcase_28 AC 58 ms
6,940 KB
testcase_29 AC 56 ms
6,940 KB
testcase_30 AC 17 ms
7,936 KB
testcase_31 AC 17 ms
7,808 KB
testcase_32 AC 18 ms
7,808 KB
testcase_33 AC 17 ms
7,936 KB
testcase_34 AC 17 ms
7,936 KB
testcase_35 AC 17 ms
7,808 KB
testcase_36 AC 18 ms
7,936 KB
testcase_37 AC 18 ms
7,808 KB
testcase_38 AC 18 ms
7,808 KB
testcase_39 AC 18 ms
7,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using namespace std;
using ll=long long;
using ld=double;
ld pie=3.14159265359;
ll mod=998244353;
long long inf=100000000000000001;
int main(){
    ll n;
    cin >> n;
    vector<ll>a(n);
    for (ll i = 0; i < n; i++)
    {
        cin >> a[i];
    }
    vector<ll>two(17,1);
    for (ll i = 1; i <=16; i++)
    {
        two[i]=two[i-1]*2;
    }
    if (n>=16)
    {
        ll ans=0;
        for (ll i = 0; i < 16; i++)
        {
            ans+=two[i];
        }
        cout << ans << endl;
        return 0;
    }
    ll dai=0;
    for (ll i = 0; i < 16; i++)
    {
        dai+=two[i];
    }
    vector<vector<ll>>dp(n+1,vector<ll>(dai+10,0));
    dp[0][0]=1;
    for (ll i = 0; i < n; i++)
    {
        vector<ll>b;
        for (ll j = 0; j < 16; j++)
        {
            b.push_back(a[i]);
            if (a[i]%2)
            {
                a[i]+=two[16];
            }
            a[i]/=2;
        }
        for (ll j = 0; j <= dai; j++)
        {
            for (ll k = 0; k < b.size(); k++)
            {
                ll x=j;
                x=x|b[k];
                dp[i+1][x]+=dp[i][j];
            }
        }
    }
    ll ans=0;
    for (ll i = 0; i < dp[n].size(); i++)
    {
        if (dp[n][i]>=1)
        {
            ans=i;
        }
    }
    cout << ans << endl;
}
0