結果

問題 No.1444 !Andd
ユーザー chocoruskchocorusk
提出日時 2021-03-26 22:13:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 1,748 bytes
コンパイル時間 2,889 ms
コンパイル使用メモリ 189,112 KB
実行使用メモリ 43,648 KB
最終ジャッジ日時 2024-11-28 23:33:18
合計ジャッジ時間 5,202 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 34 ms
12,672 KB
testcase_04 AC 23 ms
9,472 KB
testcase_05 AC 41 ms
21,376 KB
testcase_06 AC 25 ms
9,984 KB
testcase_07 AC 20 ms
8,832 KB
testcase_08 AC 53 ms
19,456 KB
testcase_09 AC 35 ms
12,928 KB
testcase_10 AC 30 ms
15,232 KB
testcase_11 AC 36 ms
18,176 KB
testcase_12 AC 68 ms
23,168 KB
testcase_13 AC 96 ms
31,232 KB
testcase_14 AC 50 ms
25,216 KB
testcase_15 AC 90 ms
30,208 KB
testcase_16 AC 133 ms
43,648 KB
testcase_17 AC 93 ms
43,552 KB
testcase_18 AC 134 ms
43,512 KB
testcase_19 AC 136 ms
43,520 KB
testcase_20 AC 136 ms
43,576 KB
testcase_21 AC 134 ms
43,520 KB
testcase_22 AC 133 ms
43,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#include <list>
#include <atcoder/all>
#define popcount __builtin_popcount
using namespace std;
using namespace atcoder;
typedef long long ll;
typedef pair<int, int> P;
bool dp[2][20020][1024];
int main()
{
   int n; cin>>n;
    int a[20020];
    for(int i=0; i<n; i++){
        cin>>a[i];
    }
    const int mask=1023;
    dp[0][0][1]=1;
    for(int i=0; i<n; i++){
        for(int j=0; j<1024; j++){
            dp[1][i+1][(j*a[i])&mask]|=(dp[0][i][j]|dp[1][i][j]);
            dp[0][i+1][j&a[i]]|=(dp[0][i][j]|dp[1][i][j]);
        }
    }
    bool ok[1024]={};
    ok[1]=1;
    int cnt=0;
    for(int i=0; i<n; i++){
        if(a[i]==0){
            for(int j=i; j<n; j++){
                cout<<1<<endl;
            }
            return 0;
        }
        bool ok1[1024]={};
        for(int j=0; j<1024; j++){
            if(ok[j]){
                if(j*a[i]>=1024){
                    cnt++;
                }else{
                    ok1[a[i]*j]=1;
                }
            }
        }
        for(int j=0; j<1024; j++){
            ok[j]=ok1[j];
        }
        int ans=cnt;
        for(int j=0; j<1024; j++){
            if(dp[0][i+1][j]) ok[j]=1;
            if(ok[j]){
                ans++;
                //cout<<j<<" ";
            }
        }
        cout<<ans<<endl;
    }

    return 0;
}
0