結果

問題 No.2171 OR Assignment
ユーザー 👑 tute7627tute7627
提出日時 2022-11-20 20:23:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,037 bytes
コンパイル時間 3,759 ms
コンパイル使用メモリ 227,256 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-18 05:59:27
合計ジャッジ時間 31,732 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 157 ms
6,820 KB
testcase_13 AC 157 ms
6,820 KB
testcase_14 AC 156 ms
6,820 KB
testcase_15 AC 41 ms
6,820 KB
testcase_16 AC 45 ms
6,816 KB
testcase_17 AC 57 ms
6,816 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 3,182 ms
6,816 KB
testcase_21 AC 2,230 ms
6,816 KB
testcase_22 AC 190 ms
6,816 KB
testcase_23 AC 213 ms
6,816 KB
testcase_24 AC 216 ms
6,820 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 1,108 ms
6,820 KB
testcase_28 AC 1,320 ms
6,820 KB
testcase_29 AC 1,739 ms
6,816 KB
testcase_30 AC 228 ms
6,820 KB
testcase_31 AC 121 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

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


const int MOD = 998244353;

int main(){
  cin.tie(nullptr);
  ios_base::sync_with_stdio(false);
  
  int N;
  cin >> N;
  vector<int> A(N);
  for(int i = 0; i < N; i++){
    cin >> A[i];
  }
  vector<int> dp(N);
  dp[0] = 1;
  long long all = 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());
    long long rem = all;
    int r = i;
    for(int j = (int)idx.size() - 1; j >= 0; j--){
      if(idx[j] != i && idx[j] != -1){
        while(idx[j] < r){
          rem -= dp[r--];
        }
        rem = (rem % MOD + MOD) % MOD;
        dp[idx[j] + 1] = (rem + dp[idx[j] + 1]) % MOD;
        all = (all + rem) % MOD;
      }
    }
  }
  cout << all << endl; 
}
0