結果
問題 | No.2171 OR Assignment |
ユーザー | milanis48663220 |
提出日時 | 2023-07-05 01:21:38 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,182 ms / 3,500 ms |
コード長 | 2,271 bytes |
コンパイル時間 | 1,639 ms |
コンパイル使用メモリ | 135,184 KB |
実行使用メモリ | 36,596 KB |
最終ジャッジ日時 | 2024-07-18 19:38:55 |
合計ジャッジ時間 | 18,660 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 300 ms
36,480 KB |
testcase_13 | AC | 299 ms
36,352 KB |
testcase_14 | AC | 300 ms
36,480 KB |
testcase_15 | AC | 79 ms
36,352 KB |
testcase_16 | AC | 94 ms
36,480 KB |
testcase_17 | AC | 106 ms
36,352 KB |
testcase_18 | AC | 663 ms
36,352 KB |
testcase_19 | AC | 636 ms
36,396 KB |
testcase_20 | AC | 1,003 ms
36,384 KB |
testcase_21 | AC | 1,021 ms
36,384 KB |
testcase_22 | AC | 1,059 ms
36,596 KB |
testcase_23 | AC | 922 ms
36,420 KB |
testcase_24 | AC | 1,176 ms
36,480 KB |
testcase_25 | AC | 1,182 ms
36,520 KB |
testcase_26 | AC | 1,182 ms
36,352 KB |
testcase_27 | AC | 1,011 ms
36,480 KB |
testcase_28 | AC | 1,023 ms
36,532 KB |
testcase_29 | AC | 993 ms
36,480 KB |
testcase_30 | AC | 965 ms
36,580 KB |
testcase_31 | AC | 980 ms
36,352 KB |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <vector> #include <queue> #include <deque> #include <set> #include <map> #include <tuple> #include <cmath> #include <numeric> #include <functional> #include <cassert> #include <atcoder/modint> #include <atcoder/segtree> #define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl; #define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } using namespace std; typedef long long ll; template<typename T> vector<vector<T>> vec2d(int n, int m, T v){ return vector<vector<T>>(n, vector<T>(m, v)); } template<typename T> vector<vector<vector<T>>> vec3d(int n, int m, int k, T v){ return vector<vector<vector<T>>>(n, vector<vector<T>>(m, vector<T>(k, v))); } template<typename T> void print_vector(vector<T> v, char delimiter=' '){ if(v.empty()) { cout << endl; return; } for(int i = 0; i+1 < v.size(); i++) cout << v[i] << delimiter; cout << v.back() << endl; } using mint = atcoder::modint998244353; ostream& operator<<(ostream& os, const mint& m){ os << m.val(); return os; } mint op(mint x, mint y){ return x+y; } mint e(){ return mint(0); } using Seg = atcoder::segtree<mint, op, e>; int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; int n; cin >> n; vector<int> a(n); for(int i = 0; i < n; i++) cin >> a[i]; auto prev_pos = vec2d(n, 30, -1); for(int i = 0; i < n; i++) { if(i > 0) prev_pos[i] = prev_pos[i-1]; for(int j = 0; j < 30; j++){ if(a[i]&(1<<j)){ prev_pos[i][j] = i; } } } Seg dp(n+1); dp.set(n, mint(1)); for(int i = n-1; i >= 0; i--){ set<int> st = {i}; for(int j = 0; j < 30; j++){ if(prev_pos[i][j] != -1) st.insert(prev_pos[i][j]); } for(int idx: st){ mint x = dp.prod(idx, i+2); dp.set(idx, x); } } cout << dp.get(0) << endl; }