結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー 古寺いろは古寺いろは
提出日時 2015-04-16 23:44:30
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 7 ms / 5,000 ms
コード長 835 bytes
コンパイル時間 1,389 ms
コンパイル使用メモリ 164,096 KB
実行使用メモリ 6,144 KB
最終ジャッジ日時 2024-06-29 01:42:50
合計ジャッジ時間 2,027 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 7 ms
5,504 KB
testcase_08 AC 7 ms
5,632 KB
testcase_09 AC 5 ms
5,376 KB
testcase_10 AC 6 ms
5,376 KB
testcase_11 AC 7 ms
6,016 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 5 ms
5,888 KB
testcase_15 AC 7 ms
6,144 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 6 ms
5,760 KB
testcase_19 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;

int main() {
	int N;
	cin >> N;
	vector<long long> A(N);
	for (int i = 0; i < N; i++)
	{
		cin >> A[i];
	}
	int ans = 0;

	vector<vector<long long>> matrix(N, vector<long long>(61));

	for (int i = 0; i < N; i++)
	{
		for (int j = 0; j < 61; j++)
		{
			matrix[i][j] = (A[i] >> j) % 2;
		}
	}
	vector<int> check(N, 0);
	for (int j = 0; j < 61; j++)
	{
		int start = -1;
		for (int i = 0; i < N; i++)
		{
			if (check[i]) continue;
			if (matrix[i][j] == 1){
				start = i;
				break;
			}
		}
		//cout << j << endl;
		if (start == -1) continue;
		ans++;
		check[start] = 1;
		for (int i = 0; i < N; i++)
		{
			if (check[i]) continue;
			if (matrix[i][j]){
				for (int k = j; k < 61; k++)
				{
					matrix[i][k] ^= matrix[start][k];
				}
			}
		}
	}


	cout << (1ll << ans) << endl;
}
0