結果
問題 | No.1296 OR or NOR |
ユーザー | chocorusk |
提出日時 | 2020-11-22 03:33:59 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2,226 ms / 3,000 ms |
コード長 | 3,268 bytes |
コンパイル時間 | 1,276 ms |
コンパイル使用メモリ | 130,976 KB |
実行使用メモリ | 31,232 KB |
最終ジャッジ日時 | 2024-07-23 16:12:16 |
合計ジャッジ時間 | 10,576 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 100 ms
31,104 KB |
testcase_03 | AC | 110 ms
31,104 KB |
testcase_04 | AC | 170 ms
31,232 KB |
testcase_05 | AC | 172 ms
31,104 KB |
testcase_06 | AC | 119 ms
31,104 KB |
testcase_07 | AC | 116 ms
31,104 KB |
testcase_08 | AC | 116 ms
31,104 KB |
testcase_09 | AC | 132 ms
31,104 KB |
testcase_10 | AC | 150 ms
30,976 KB |
testcase_11 | AC | 118 ms
31,232 KB |
testcase_12 | AC | 142 ms
31,104 KB |
testcase_13 | AC | 125 ms
30,976 KB |
testcase_14 | AC | 2,226 ms
31,232 KB |
testcase_15 | AC | 150 ms
31,232 KB |
testcase_16 | AC | 122 ms
31,104 KB |
testcase_17 | AC | 116 ms
31,104 KB |
testcase_18 | AC | 115 ms
31,104 KB |
testcase_19 | AC | 117 ms
31,104 KB |
testcase_20 | AC | 60 ms
5,376 KB |
testcase_21 | AC | 62 ms
5,376 KB |
testcase_22 | AC | 58 ms
5,376 KB |
testcase_23 | AC | 59 ms
5,376 KB |
testcase_24 | AC | 61 ms
5,376 KB |
testcase_25 | AC | 60 ms
5,376 KB |
testcase_26 | AC | 59 ms
5,376 KB |
testcase_27 | AC | 61 ms
5,376 KB |
testcase_28 | AC | 60 ms
5,376 KB |
testcase_29 | AC | 59 ms
5,376 KB |
testcase_30 | AC | 187 ms
31,104 KB |
testcase_31 | AC | 178 ms
31,104 KB |
testcase_32 | AC | 189 ms
31,104 KB |
testcase_33 | AC | 116 ms
31,232 KB |
testcase_34 | AC | 115 ms
31,104 KB |
ソースコード
#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; template<typename T> struct SparseTable{ using F=function<T(T, T)>; const F f; const T e; vector<vector<T>> spt; vector<int> vlog; SparseTable(const F f, const T &e, const vector<T> &v):f(f), e(e){ int b=0, n=v.size(); while((1<<b)<=n) b++; spt.resize(b, vector<T>(n)); for(int i=0; i<n; i++) spt[0][i]=v[i]; for(int i=1; i<b; i++){ for(int j=0; j+(1<<i)<=n; j++){ spt[i][j]=f(spt[i-1][j], spt[i-1][j+(1<<(i-1))]); } } vlog.resize(n+1); for(int i=2; i<=n; i++) vlog[i]=vlog[i>>1]+1; } T query(int l, int r){ int b=vlog[r-l]; return f(spt[b][l], spt[b][r-(1<<b)]); } }; 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){ if((x&a[k])>0){ 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; } }else{ 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; }