結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー exaluckexaluck
提出日時 2018-11-16 02:19:52
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 696 ms / 5,000 ms
コード長 587 bytes
コンパイル時間 643 ms
コンパイル使用メモリ 68,056 KB
実行使用メモリ 23,552 KB
最終ジャッジ日時 2024-07-01 05:09:39
合計ジャッジ時間 5,444 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 696 ms
21,120 KB
testcase_08 AC 487 ms
21,248 KB
testcase_09 AC 333 ms
15,488 KB
testcase_10 AC 402 ms
18,048 KB
testcase_11 AC 528 ms
22,784 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 267 ms
23,424 KB
testcase_15 AC 548 ms
23,552 KB
testcase_16 AC 3 ms
6,940 KB
testcase_17 AC 121 ms
7,552 KB
testcase_18 AC 594 ms
20,608 KB
testcase_19 AC 61 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;

constexpr int inputLimit = 2 << 14;

int main()
{
	int n;
	cin >> n;

	vector<int> a(n);
	for(auto& x : a) {
		cin >> x;
	}

	vector<vector<bool>> dp(n + 1, vector<bool>(inputLimit + 1, false));
	dp[0][0] = true;
	for(auto i = 0; i < n; ++i) {
		for(auto j = 0; j <= inputLimit; ++j) {
			if(dp[i][j]) {
				dp[i + 1][j] = dp[i][j];
				dp[i + 1][j ^ a[i]] = dp[i][j];
			}
		}
	}

	int result = 0;
	for(auto i = 0; i <= inputLimit; ++i) {
		if(dp[n][i]) {
			++result;
		}
	}

	cout << result << endl;
}
0