結果

問題 No.1296 OR or NOR
ユーザー leaf_1415leaf_1415
提出日時 2020-11-20 22:47:59
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 983 ms / 3,000 ms
コード長 1,477 bytes
コンパイル時間 1,035 ms
コンパイル使用メモリ 85,940 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-23 13:33:20
合計ジャッジ時間 16,815 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 116 ms
6,940 KB
testcase_03 AC 118 ms
6,940 KB
testcase_04 AC 468 ms
6,940 KB
testcase_05 AC 450 ms
6,940 KB
testcase_06 AC 198 ms
6,940 KB
testcase_07 AC 180 ms
6,940 KB
testcase_08 AC 179 ms
6,944 KB
testcase_09 AC 173 ms
6,940 KB
testcase_10 AC 182 ms
6,940 KB
testcase_11 AC 157 ms
6,940 KB
testcase_12 AC 148 ms
6,944 KB
testcase_13 AC 149 ms
6,940 KB
testcase_14 AC 967 ms
6,940 KB
testcase_15 AC 961 ms
6,944 KB
testcase_16 AC 927 ms
6,944 KB
testcase_17 AC 149 ms
6,940 KB
testcase_18 AC 166 ms
6,940 KB
testcase_19 AC 210 ms
6,940 KB
testcase_20 AC 147 ms
6,940 KB
testcase_21 AC 132 ms
6,940 KB
testcase_22 AC 81 ms
6,940 KB
testcase_23 AC 84 ms
6,940 KB
testcase_24 AC 105 ms
6,940 KB
testcase_25 AC 106 ms
6,944 KB
testcase_26 AC 157 ms
6,940 KB
testcase_27 AC 161 ms
6,944 KB
testcase_28 AC 150 ms
6,944 KB
testcase_29 AC 145 ms
6,940 KB
testcase_30 AC 983 ms
6,940 KB
testcase_31 AC 981 ms
6,940 KB
testcase_32 AC 982 ms
6,940 KB
testcase_33 AC 906 ms
6,944 KB
testcase_34 AC 908 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <cmath>
#include <ctime>
#include <cstdlib>
#include <cassert>
#include <vector>
#include <list>
#include <stack>
#include <queue>
#include <deque>
#include <map>
#include <set>
#include <bitset>
#include <string>
#include <algorithm>
#include <utility>
#include <complex>
#define rep(x, s, t) for(llint (x) = (s); (x) <= (t); (x)++)
#define chmin(x, y) (x) = min((x), (y))
#define chmax(x, y) (x) = max((x), (y))
#define all(x) (x).begin(),(x).end()
#define inf 1e18
#define mod 998244353

using namespace std;

typedef long long llint;
typedef long long ll;
typedef pair<llint, llint> P;

ll n, Q;
ll a[200005];
vector<ll> vec;

int main(void)
{
	ios::sync_with_stdio(0);
	cin.tie(0);
	
	cin >> n;
	rep(i, 1, n) cin >> a[i];
	
	ll mask = 0; bool none = false;
	for(int i = n; i >= 1; i--){
		ll x = ~mask & a[i];
		if(x > 0) vec.push_back(x);
		mask |= x;
		if(i == 1 && x > 0) none = true;
	}
	mask = ~mask;
	
	cin >> Q;
	ll b;
	rep(i, 1, Q){
		cin >> b;
		ll ans = 0;
		for(auto x : vec){
			bool flag[2] = {};
			rep(j, 0, 59){
				if(x & (1LL<<j)) flag[((b>>j)+ans)&1] = true;
			}
			if(flag[0] && flag[1]) ans = inf;
			if(flag[0]) ans++;
		}
		
		bool flag[2] = {};
		rep(j, 0, 59){
			if(mask & (1LL<<j)) flag[((b>>j)+ans)&1] = true;
		}
 		if(flag[0] && flag[1]) ans = inf;
		if(flag[1]){
			if(none) ans = inf;
			ans++;
		}
		
		if(ans > inf/2) ans = -1;
		cout << ans << "\n";
		end:;
	}
	flush(cout);
	
	return 0;
}
0