結果
問題 | No.2171 OR Assignment |
ユーザー | hotman78 |
提出日時 | 2022-12-23 07:42:23 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,279 bytes |
コンパイル時間 | 3,032 ms |
コンパイル使用メモリ | 227,092 KB |
実行使用メモリ | 68,540 KB |
最終ジャッジ日時 | 2024-11-18 07:02:28 |
合計ジャッジ時間 | 59,879 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,640 KB |
testcase_01 | AC | 2 ms
13,764 KB |
testcase_02 | AC | 2 ms
57,468 KB |
testcase_03 | AC | 2 ms
13,768 KB |
testcase_04 | AC | 2 ms
13,772 KB |
testcase_05 | AC | 2 ms
13,760 KB |
testcase_06 | AC | 2 ms
13,764 KB |
testcase_07 | AC | 2 ms
13,768 KB |
testcase_08 | AC | 2 ms
68,364 KB |
testcase_09 | AC | 2 ms
13,764 KB |
testcase_10 | AC | 2 ms
43,556 KB |
testcase_11 | AC | 2 ms
13,768 KB |
testcase_12 | AC | 244 ms
57,252 KB |
testcase_13 | AC | 246 ms
27,388 KB |
testcase_14 | AC | 245 ms
57,368 KB |
testcase_15 | AC | 59 ms
21,756 KB |
testcase_16 | AC | 88 ms
14,920 KB |
testcase_17 | AC | 95 ms
14,936 KB |
testcase_18 | AC | 1,799 ms
32,052 KB |
testcase_19 | AC | 1,629 ms
30,196 KB |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | AC | 3,180 ms
36,736 KB |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | AC | 3,243 ms
36,848 KB |
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;map<lint,mint>dp;dp[0]=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());map<lint,mint>dp2;for(auto [s,t]:g){dp2[t]+=dp[s];if(i+1==n){ans+=dp[s];}}swap(dp,dp2);}cout<<ans.val()<<endl;}