結果
問題 | No.2171 OR Assignment |
ユーザー | hotman78 |
提出日時 | 2022-12-23 07:47:47 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,393 bytes |
コンパイル時間 | 2,935 ms |
コンパイル使用メモリ | 223,332 KB |
実行使用メモリ | 68,788 KB |
最終ジャッジ日時 | 2024-11-18 07:03:29 |
合計ジャッジ時間 | 60,150 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,636 KB |
testcase_01 | AC | 2 ms
13,636 KB |
testcase_02 | AC | 2 ms
13,636 KB |
testcase_03 | AC | 2 ms
13,760 KB |
testcase_04 | AC | 2 ms
13,636 KB |
testcase_05 | AC | 2 ms
57,820 KB |
testcase_06 | AC | 2 ms
13,636 KB |
testcase_07 | AC | 2 ms
68,388 KB |
testcase_08 | AC | 2 ms
13,636 KB |
testcase_09 | AC | 2 ms
68,444 KB |
testcase_10 | AC | 2 ms
13,636 KB |
testcase_11 | AC | 2 ms
13,764 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 57 ms
15,016 KB |
testcase_16 | WA | - |
testcase_17 | AC | 85 ms
14,896 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | WA | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | WA | - |
testcase_31 | TLE | - |
ソースコード
#pragma optimize("Ofast") #pragma target("avx2") #include<bits/stdc++.h> using namespace std; #include<atcoder/modint.hpp> using mint=atcoder::static_modint<998244353>; #define endl '\n' using lint=long long; #define all(n) (n).begin(),(n).end() int main(){ cin.tie(0)->sync_with_stdio(0); int n; cin>>n; vector<int>a(n); for(int i=0;i<n;++i)cin>>a[i]; vector<vector<int>>s(n+1); s[0].emplace_back(0); for(int i=0;i<n;++i){ for(auto e:s[i]){ s[i+1].emplace_back(e|a[i]); } s[i+1].emplace_back(a[i]); s[i+1].emplace_back(0); sort(all(s[i+1])); s[i+1].erase(unique(all(s[i+1])),s[i+1].end()); } mint ans=0; vector<lint>dp={1}; for(int i=0;i<n;++i){ vector<pair<int,int>>g; for(auto d:s[i]){ for(auto e:s[i]){ if(d<e)break; if((d|e)==d){ g.emplace_back(d,e|a[i]); } } } sort(all(g)); g.erase(unique(all(g)),g.end()); vector<lint>dp2(s[i+1].size()); auto get=[&](const vector<int>&x,int i){ return lower_bound(all(x),i)-x.begin(); }; for(auto [p,q]:g){ dp2[get(s[i+1],q)]+=dp[get(s[i],p)]; if(i+1==n)ans+=dp[get(s[i],p)]; } swap(dp,dp2); } cout<<ans.val()<<endl; }