結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー lapilapi
提出日時 2019-08-10 19:27:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,193 bytes
コンパイル時間 1,130 ms
コンパイル使用メモリ 122,272 KB
実行使用メモリ 101,120 KB
最終ジャッジ日時 2024-07-19 17:19:50
合計ジャッジ時間 16,578 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 WA -
testcase_08 AC 2,031 ms
90,240 KB
testcase_09 AC 1,360 ms
62,976 KB
testcase_10 AC 1,646 ms
75,156 KB
testcase_11 AC 2,191 ms
97,792 KB
testcase_12 WA -
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 101 ms
23,424 KB
testcase_15 AC 2,268 ms
101,120 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 496 ms
24,960 KB
testcase_18 WA -
testcase_19 AC 242 ms
13,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <stack>
#include <queue>
#include <list>
#include <set>
#include <map>
#include <numeric>
#include <regex>
#include <tuple>
#include <iomanip>
#include <cmath>
using namespace std;

typedef long long ll;
typedef pair<int, int> P;
#define MOD 1000000007 // 10^9 + 7
#define INF 1000000000 // 10^9
#define LLINF 1LL<<60

// xor
int XOR(int a, int b) {
	int res = 0;
	int dig = 1;
	while ((a > 0) || (b > 0)) {
		int tmpa = a % 2;
		int tmpb = b % 2;
		if (tmpa != tmpb) res += dig;
		dig *= 2;
		a /= 2; b /= 2;
	}
	return res;
}

bool poss[5009][20009];
int A[5009];

int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);

	int N; cin >> N;
	for (int i = 1; i <= N; i++) cin >> A[i];
	//cout << "ok1" << endl;
	//cout << XOR(1, 2) << endl;

	poss[0][0] = true;
	for (int i = 0; i < N; i++) {
		for (int j = 0; j <= 16384; j++) {
			if (poss[i][j]) {
				poss[i + 1][j] = true;
				int nxt = XOR(j,A[i+1]);
				if (nxt <= 16384) poss[i + 1][nxt] = true;
			}
		}
	}

	//cout << "ok2" << endl;

	int ans = 0;
	for (int j = 0; j <= 20000; j++) {
		if (poss[N][j]) ans++;
	}
	cout << ans << endl;

	return 0;
}
0