結果

問題 No.1296 OR or NOR
ユーザー chocoruskchocorusk
提出日時 2020-11-22 03:38:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,268 ms / 3,000 ms
コード長 1,946 bytes
コンパイル時間 1,447 ms
コンパイル使用メモリ 129,840 KB
実行使用メモリ 31,232 KB
最終ジャッジ日時 2024-07-23 16:12:31
合計ジャッジ時間 13,882 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 119 ms
31,104 KB
testcase_03 AC 116 ms
31,104 KB
testcase_04 AC 282 ms
31,104 KB
testcase_05 AC 276 ms
31,104 KB
testcase_06 AC 152 ms
31,104 KB
testcase_07 AC 144 ms
31,104 KB
testcase_08 AC 145 ms
31,104 KB
testcase_09 AC 200 ms
31,104 KB
testcase_10 AC 215 ms
31,104 KB
testcase_11 AC 166 ms
31,104 KB
testcase_12 AC 167 ms
31,104 KB
testcase_13 AC 179 ms
31,104 KB
testcase_14 AC 2,268 ms
31,104 KB
testcase_15 AC 509 ms
31,104 KB
testcase_16 AC 439 ms
31,104 KB
testcase_17 AC 129 ms
31,104 KB
testcase_18 AC 128 ms
31,104 KB
testcase_19 AC 130 ms
31,104 KB
testcase_20 AC 72 ms
5,376 KB
testcase_21 AC 71 ms
5,376 KB
testcase_22 AC 63 ms
5,376 KB
testcase_23 AC 63 ms
5,376 KB
testcase_24 AC 68 ms
5,376 KB
testcase_25 AC 69 ms
5,376 KB
testcase_26 AC 72 ms
5,376 KB
testcase_27 AC 73 ms
5,376 KB
testcase_28 AC 71 ms
5,376 KB
testcase_29 AC 74 ms
5,376 KB
testcase_30 AC 557 ms
31,232 KB
testcase_31 AC 554 ms
31,104 KB
testcase_32 AC 556 ms
31,104 KB
testcase_33 AC 439 ms
31,104 KB
testcase_34 AC 434 ms
31,104 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>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;

int main()
{
    int n;
    cin>>n;
    vector<ll> a(n);
    for(int i=0; i<n; i++){
        scanf("%lld", &a[i]);
    }
    ll as[20][200020];
    for(int i=0; i<n; i++) as[0][i]=a[i];
    for(int i=1; (1<<i)<=n; i++){
        for(int j=0; j<n; j++){
            if(j+1-(1<<i)>=0){
                as[i][j]=(as[i-1][j]|as[i-1][j-(1<<(i-1))]);
            }
        }
    }
    int q;
    cin>>q;
    while(q--){
        ll b;
        scanf("%lld", &b);
        int k=n-1;
        ll x=(1ll<<60)-1;
        int ans=0;
        while(k>=0){
            for(int t=17; t>=0; t--){
                if(k+1-(1<<t)<0) continue;
                if((x&as[t][k])==0) k-=(1<<t);
            }
            if(k==-1){
                if(b==0) break;
                else if(x==b){
                    ans++;
                    b=0;
                    break;
                }else{
                    ans=-1;
                    break;
                }
            }
            if(((b|a[k])&x)==b){
                b^=(x&a[k]);
                x^=(x&a[k]);
                k--;
            }else if(((~b|a[k])&x)==(~b&x)){
                ans++;
                b=(~b&x);
                b^=(x&a[k]);
                x^=(x&a[k]);
                k--;
            }else{
                ans=-1;
                break;
            }
        }
        if(b!=0) ans=-1;
        printf("%d\n", ans);
    }
	return 0;
}

0