結果

問題 No.2171 OR Assignment
ユーザー 👑 tute7627tute7627
提出日時 2022-11-20 20:20:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 988 bytes
コンパイル時間 3,193 ms
コンパイル使用メモリ 228,240 KB
実行使用メモリ 13,640 KB
最終ジャッジ日時 2024-11-18 05:57:07
合計ジャッジ時間 47,804 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
11,556 KB
testcase_01 AC 1 ms
13,636 KB
testcase_02 AC 2 ms
13,636 KB
testcase_03 AC 1 ms
11,556 KB
testcase_04 AC 2 ms
13,640 KB
testcase_05 AC 1 ms
11,680 KB
testcase_06 AC 2 ms
11,556 KB
testcase_07 AC 1 ms
11,684 KB
testcase_08 AC 2 ms
13,640 KB
testcase_09 AC 2 ms
11,552 KB
testcase_10 AC 2 ms
13,632 KB
testcase_11 AC 2 ms
11,684 KB
testcase_12 AC 134 ms
13,640 KB
testcase_13 AC 133 ms
11,556 KB
testcase_14 AC 134 ms
13,640 KB
testcase_15 AC 29 ms
11,556 KB
testcase_16 AC 37 ms
11,680 KB
testcase_17 AC 45 ms
6,816 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 479 ms
6,816 KB
testcase_23 AC 189 ms
6,820 KB
testcase_24 AC 192 ms
6,816 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 212 ms
6,820 KB
testcase_31 AC 86 ms
11,680 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;


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<atcoder::modint998244353> dp(N);
  dp[0] = 1;
  atcoder::modint998244353 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());
    atcoder::modint998244353 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--];
        }
        dp[idx[j] + 1] += rem;
        all += rem;
      }
    }
  }
  cout << all.val() << endl; 
}
0