結果
問題 | No.1296 OR or NOR |
ユーザー | chocorusk |
提出日時 | 2020-11-22 03:09:42 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,119 bytes |
コンパイル時間 | 1,586 ms |
コンパイル使用メモリ | 141,504 KB |
実行使用メモリ | 34,816 KB |
最終ジャッジ日時 | 2024-07-23 16:11:43 |
合計ジャッジ時間 | 22,030 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 572 ms
34,432 KB |
testcase_08 | AC | 573 ms
34,560 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 556 ms
34,432 KB |
testcase_17 | AC | 572 ms
34,432 KB |
testcase_18 | AC | 568 ms
34,560 KB |
testcase_19 | AC | 582 ms
34,560 KB |
testcase_20 | AC | 406 ms
5,376 KB |
testcase_21 | AC | 404 ms
5,376 KB |
testcase_22 | AC | 402 ms
5,376 KB |
testcase_23 | AC | 405 ms
5,376 KB |
testcase_24 | AC | 404 ms
5,376 KB |
testcase_25 | AC | 394 ms
5,376 KB |
testcase_26 | AC | 405 ms
5,376 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 409 ms
5,376 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 554 ms
34,688 KB |
testcase_34 | AC | 558 ms
34,432 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 unsigned 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++){ cin>>a[i]; } SparseTable<ll> seg([](ll a, ll b){ return (a|b);}, 0, a); int q; cin>>q; while(q--){ ll b; cin>>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{ int l=-1, r=k; while(r-l>1){ int m=(l+r)/2; if((x&seg.query(m, k+1))==0) r=m; else l=m; } if(l==-1){ if(b==0) break; else if(x==b){ ans++; b=0; break; }else{ ans=-1; break; } } k=l; 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; cout<<ans<<endl; } return 0; }