結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー komori3komori3
提出日時 2017-09-28 03:07:12
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 188 ms / 5,000 ms
コード長 2,585 bytes
コンパイル時間 597 ms
コンパイル使用メモリ 80,232 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-12 15:13:58
合計ジャッジ時間 2,801 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 117 ms
4,376 KB
testcase_08 AC 143 ms
4,376 KB
testcase_09 AC 98 ms
4,376 KB
testcase_10 AC 118 ms
4,376 KB
testcase_11 AC 155 ms
4,380 KB
testcase_12 AC 2 ms
4,376 KB
testcase_13 AC 2 ms
4,376 KB
testcase_14 AC 188 ms
4,376 KB
testcase_15 AC 159 ms
4,376 KB
testcase_16 AC 2 ms
4,376 KB
testcase_17 AC 37 ms
4,376 KB
testcase_18 AC 125 ms
4,380 KB
testcase_19 AC 19 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <cmath>
#include <string>
#include <vector>
#include <algorithm>
#include <queue>
#include <map>
#include <functional>
#include <set>
#include <numeric>
#include <stack>
#include <utility>
#include <time.h>
//#include "util.h"

using namespace std;
typedef unsigned uint;
typedef long long ll;
typedef unsigned long long ull;



//呪文
template <typename _KTy, typename _Ty> ostream& operator << (ostream& ostr, const pair<_KTy, _Ty>& m) { cout << "{" << m.first << ", " << m.second << "}"; return ostr; }
template <typename _KTy, typename _Ty> ostream& operator << (ostream& ostr, const map<_KTy, _Ty>& m) { if (m.empty()) { cout << "{ }"; return ostr;	} cout << "{" << *m.begin(); for (auto itr = ++m.begin(); itr != m.end(); itr++) { cout << ", " << *itr; } cout << "}"; return ostr; }
template <typename _Ty> ostream& operator << (ostream& ostr, const vector<_Ty>& v) { if (v.empty()) { cout << "{ }"; return ostr; }	cout << "{" << v.front(); for (auto itr = ++v.begin(); itr != v.end(); itr++) { cout << ", " << *itr; }	cout << "}"; return ostr; }
template <typename _Ty> ostream& operator << (ostream& ostr, const set<_Ty>& s) { if (s.empty()) { cout << "{ }"; return ostr; } cout << "{" << *(s.begin()); for (auto itr = ++s.begin(); itr != s.end(); itr++) { cout << ", " << *itr; }	cout << "}"; return ostr; }
#define PI 3.14159265358979323846
#define EPS 1e-6
#define MIN(a,b) ((a)<(b)?(a):(b))
#define MAX(a,b) ((a)>(b)?(a):(b))
#define all(x) (x).begin(), (x).end()



int yuki0183_2()
{
	int x;
	int a[6] = { 1, 20, 3, 14, 5, 6 };
	set<int> st;

	for (int i = 0; i < (1 << 6); i++) {
		cout << i << " : ";
		x = 0;
		for (int b = 0; b < 6; b++) {
			if (i & (1 << b)) {
				cout << a[b] << " ";
				x ^= a[b];
			}
		}
		cout << " : " << x << endl;
		st.insert(x);
	}

	cout << st.size() << " : " << st << endl;
	return 0;
}

int yuki0183()
{
	// A_i は 2^14 = 100000000000000 までとりうるので XOR の結果は最大 2^15 - 1 = 111111111111111 までありうる
	const int MAX = 1 << 15;

	// dp[i] が true なら i をつくることができる
	bool dp[MAX] = { 0 };
	
	// 0 は初期状態
	dp[0] = true;

	int N;
	cin >> N;

	int tmp;

	for (int i = 0; i < N; i++) {
		cin >> tmp;
		for (int j = 0; j < MAX; j++)
			if (dp[j]) dp[tmp ^ j] = true;
	}

	int cnt = 0;
	for (int i = 0; i < MAX; i++)
		if (dp[i]) cnt++;

	cout << cnt << endl;

	return 0;
}

int main()
{
	//clock_t start, end;
	//start = clock();

	yuki0183();

	//end = clock();
	//printf("%d msec.\n", end - start);

	return 0;
}
0