結果

問題 No.2171 OR Assignment
ユーザー hotman78hotman78
提出日時 2022-12-23 07:06:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
(最新)
TLE  
(最初)
実行時間 -
コード長 998 bytes
コンパイル時間 2,592 ms
コンパイル使用メモリ 226,232 KB
実行使用メモリ 751,312 KB
最終ジャッジ日時 2024-11-18 07:00:18
合計ジャッジ時間 67,827 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,636 KB
testcase_01 AC 2 ms
428,548 KB
testcase_02 AC 2 ms
13,632 KB
testcase_03 AC 2 ms
434,324 KB
testcase_04 AC 2 ms
13,636 KB
testcase_05 AC 2 ms
436,512 KB
testcase_06 AC 2 ms
13,640 KB
testcase_07 AC 2 ms
403,336 KB
testcase_08 AC 2 ms
13,636 KB
testcase_09 AC 2 ms
434,592 KB
testcase_10 AC 2 ms
13,640 KB
testcase_11 AC 2 ms
435,168 KB
testcase_12 AC 519 ms
137,532 KB
testcase_13 MLE -
testcase_14 AC 518 ms
137,596 KB
testcase_15 AC 74 ms
434,004 KB
testcase_16 AC 123 ms
62,568 KB
testcase_17 AC 108 ms
57,680 KB
testcase_18 MLE -
testcase_19 MLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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'

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<set<int>>s(n+1);
    vector<map<int,mint>>dp(n+1);
    s[0].emplace(0);
    for(int i=0;i<n;++i){
        for(auto e:s[i]){
            s[i+1].emplace(e|a[i]);
        }
        s[i+1].emplace(a[i]);
        s[i+1].emplace(0);
    }
    mint ans=0;
    dp[0][0]=1;
    for(int i=0;i<n;++i){
        for(auto [d,c]:dp[i]){
            set<pair<int,int>>used;
            for(auto e:s[i]){
                if(used.count(make_pair(d,e|a[i])))continue;
                if((d|e)==d){
                    dp[i+1][e|a[i]]+=c;
                    used.emplace(d,e|a[i]);
                }
            }
        }
    }
    for(auto [e,c]:dp[n])ans+=c;
    cout<<ans.val()<<endl;
}
0