結果

問題 No.1296 OR or NOR
ユーザー miplectmiplect
提出日時 2020-11-21 19:25:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 159 ms / 3,000 ms
コード長 891 bytes
コンパイル時間 786 ms
コンパイル使用メモリ 71,748 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-23 16:01:27
合計ジャッジ時間 8,734 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 66 ms
5,376 KB
testcase_03 AC 65 ms
5,376 KB
testcase_04 AC 100 ms
5,376 KB
testcase_05 AC 100 ms
6,940 KB
testcase_06 AC 87 ms
6,940 KB
testcase_07 AC 85 ms
6,940 KB
testcase_08 AC 85 ms
6,940 KB
testcase_09 AC 77 ms
6,940 KB
testcase_10 AC 80 ms
6,940 KB
testcase_11 AC 66 ms
6,940 KB
testcase_12 AC 65 ms
6,944 KB
testcase_13 AC 70 ms
6,944 KB
testcase_14 AC 159 ms
6,944 KB
testcase_15 AC 113 ms
6,940 KB
testcase_16 AC 82 ms
6,944 KB
testcase_17 AC 82 ms
6,940 KB
testcase_18 AC 82 ms
6,944 KB
testcase_19 AC 81 ms
6,940 KB
testcase_20 AC 50 ms
6,940 KB
testcase_21 AC 51 ms
6,944 KB
testcase_22 AC 48 ms
6,940 KB
testcase_23 AC 50 ms
6,940 KB
testcase_24 AC 50 ms
6,940 KB
testcase_25 AC 49 ms
6,944 KB
testcase_26 AC 50 ms
6,940 KB
testcase_27 AC 50 ms
6,944 KB
testcase_28 AC 49 ms
6,944 KB
testcase_29 AC 51 ms
6,940 KB
testcase_30 AC 145 ms
6,940 KB
testcase_31 AC 145 ms
6,944 KB
testcase_32 AC 146 ms
6,944 KB
testcase_33 AC 86 ms
6,944 KB
testcase_34 AC 86 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;

typedef long long LL;

int main(){
	ios::sync_with_stdio(false);
	cin.tie(0);
	
	const LL mask = (1LL << 60) - 1;
	int n;
	cin >> n;
	vector<LL> as(n);
	for(LL &a : as){ cin >> a; }
	LL rem = mask;
	vector<LL> v;
	bool free = false;
	for(int i = n - 1; i >= 0; --i){
		LL b = rem & as[i];
		if(b != 0){
			v.push_back(b);
			rem ^= b;
			free = false;
		}
		else{
			free = true;
		}
	}

	int q;
	cin >> q;
	for(int z = 0; z < q; ++z){
		LL b;
		cin >> b;
		int ans = 0;
		for(LL x : v){
			LL y = b & x;
			if(y != 0 && y != x){
				ans = -1;
				break;
			}
			if((y == x) != (ans % 2 == 0)){
				++ans;
			}
		}
		if(ans != -1 && rem != 0){
			LL y = b & rem;
			if(y != 0 && y != rem){
				ans = -1;
			}
			else if((y == 0) != (ans % 2 == 0)){
				if(free){ ++ans; }
				else{ ans = -1; }
			}
		}
		cout << ans << '\n';
	}
}
0