結果

問題 No.2171 OR Assignment
ユーザー 👑 tute7627tute7627
提出日時 2022-11-20 20:09:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 805 bytes
コンパイル時間 2,026 ms
コンパイル使用メモリ 211,060 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-18 05:58:55
合計ジャッジ時間 4,861 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 1 ms
6,820 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 1 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
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 -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/modint>
#include<atcoder/fenwicktree>
using namespace std;


int main(){
  
  int N;
  cin >> N;
  assert(1 <= N && N <= 100000);
  vector<int> A(N);
  for(int i = 0; i < N; i++){
    cin >> A[i];
    assert(0 <= A[i] && A[i] < (1 << 30));
  }
  atcoder::fenwick_tree<atcoder::modint998244353> dp(N);
  dp.add(0, 1);
  vector<int> prev(30, -1);
  for(int i = 0; i < N; i++){
    for(int j = 0; j < 30; j++){
      if(A[i] >> j & 1){
        prev[j] = i;
      }
    }
    auto idx = prev;
    sort(idx.begin(), idx.end());
    idx.erase(unique(idx.begin(), idx.end()), idx.end());
    for(int j = (int)idx.size() - 1; j >= 0; j--){
      if(idx[j] != i){
        dp.add(idx[j] + 1, dp.sum(0, idx[j] + 1));
      }
    }
  }
  cout << dp.sum(0, N).val() << endl; 
}
0