結果

問題 No.2071 Shift and OR
ユーザー akuaakua
提出日時 2022-09-16 22:51:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 1,859 bytes
コンパイル時間 3,571 ms
コンパイル使用メモリ 179,332 KB
実行使用メモリ 813,648 KB
最終ジャッジ日時 2023-08-23 16:22:50
合計ジャッジ時間 6,383 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
4,376 KB
testcase_01 AC 12 ms
4,448 KB
testcase_02 AC 20 ms
4,976 KB
testcase_03 AC 26 ms
5,368 KB
testcase_04 AC 23 ms
5,256 KB
testcase_05 AC 37 ms
6,156 KB
testcase_06 AC 23 ms
5,216 KB
testcase_07 AC 20 ms
4,828 KB
testcase_08 AC 23 ms
5,100 KB
testcase_09 AC 24 ms
5,168 KB
testcase_10 AC 24 ms
5,132 KB
testcase_11 AC 40 ms
6,432 KB
testcase_12 AC 39 ms
6,500 KB
testcase_13 AC 36 ms
6,168 KB
testcase_14 AC 6 ms
4,376 KB
testcase_15 AC 30 ms
5,740 KB
testcase_16 AC 31 ms
5,740 KB
testcase_17 AC 41 ms
6,484 KB
testcase_18 AC 13 ms
4,380 KB
testcase_19 AC 45 ms
6,752 KB
testcase_20 AC 44 ms
6,760 KB
testcase_21 AC 55 ms
7,568 KB
testcase_22 AC 47 ms
6,948 KB
testcase_23 MLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/all>
#include <iostream> // cout, endl, cin
#include <string> // string, to_string, stoi
#include <vector> // vector
#include <algorithm> // min, max, swap, sort, reverse, lower_bound, upper_bound
#include <utility> // pair, make_pair
#include <tuple> // tuple, make_tuple
#include <cstdint> // int64_t, int*_t
#include <cstdio> // printf
#include <map> // map
#include <queue> // queue, priority_queue
#include <set> // set
#include <stack> // stack
#include <deque> // deque
#include <unordered_map> // unordered_map
#include <unordered_set> // unordered_set
#include <bitset> // bitset
#include <cctype> // isupper, islower, isdigit, toupper, tolower
#include <math.h>
#include <iomanip>
using namespace std;  
using namespace atcoder;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define repi(i, a, b) for (int i = (int)(a); i < (int)(b); i++)
typedef long long ll;
typedef unsigned long long ull;
const ll inf=1e18+1;  
using graph = vector<vector<int> > ;
using P= pair<ll,ll>;  
using vi=vector<int>;
using vvi=vector<vi>;
using vll=vector<ll>; 
using vvll=vector<vll>;
using vp=vector<P>;
using vpp=vector<vp>;
//string T="ABCDEFGHIJKLMNOPQRSTUVWXYZ";
//string S="abcdefghijklmnopqrstuvwxyz";
//g++ main.cpp -std=c++14 -I .  
//cout <<setprecision(20);
//cout << fixed << setprecision(10);
//cin.tie(0); ios::sync_with_stdio(false);
const double PI = acos(-1);

int main(){cin.tie(0); ios::sync_with_stdio(false);
  int n; cin >> n;
  vi a(n);rep(i,n)cin >> a[i];
  ll Bit=1ll<<16;
  if(n>=16){
    ll ans=Bit-1;
    cout << ans << endl;
  }
  auto f=[&](int i){
    return i/2+(1<<15)*(i&1);
  };
  vvi dp(n+1,vi(Bit));
  dp[0][0]=1;
  rep(i,n)rep(j,Bit){
    rep(k,17){
      a[i]=f(a[i]);
      int nj=j|a[i];
      dp[i+1][nj]|=dp[i][j];
    }
  }
  int ans=0;
  rep(i,Bit)if(dp[n][i])ans=i;
  cout << ans << endl;
  
}

0