結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー cielciel
提出日時 2015-04-17 19:19:23
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 725 bytes
コンパイル時間 524 ms
コンパイル使用メモリ 48,768 KB
実行使用メモリ 31,744 KB
最終ジャッジ日時 2024-07-04 11:35:09
合計ジャッジ時間 5,323 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 146 ms
23,296 KB
testcase_09 AC 29 ms
7,052 KB
testcase_10 AC 106 ms
18,432 KB
testcase_11 AC 82 ms
13,952 KB
testcase_12 AC 179 ms
26,624 KB
testcase_13 AC 187 ms
28,672 KB
testcase_14 AC 101 ms
17,408 KB
testcase_15 AC 218 ms
30,680 KB
testcase_16 AC 171 ms
25,984 KB
testcase_17 AC 193 ms
27,904 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 1 ms
6,940 KB
testcase_20 AC 76 ms
31,744 KB
testcase_21 AC 223 ms
31,744 KB
testcase_22 AC 229 ms
31,744 KB
testcase_23 AC 1 ms
6,940 KB
testcase_24 AC 1 ms
6,940 KB
testcase_25 AC 1 ms
6,944 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 1 ms
6,944 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 227 ms
30,976 KB
testcase_34 AC 213 ms
30,464 KB
testcase_35 AC 217 ms
31,360 KB
testcase_36 AC 222 ms
31,404 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:33:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   33 |         scanf("%d",&N);
      |         ~~~~~^~~~~~~~~
main.cpp:38:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   38 |                 scanf("%lld",&n);
      |                 ~~~~~^~~~~~~~~~~

ソースコード

diff #

#include <vector>
#include <algorithm>
#include <cstdio>
#include <cmath>
using namespace std;

int gauss(vector<vector<int> > &a){
	if(a.empty())return 0;
	int w=a[0].size();
	int n=a.size();
	int ret=0;
	for(int i=0;i<min(n,w);i++){
		if(!a[i][i]){
			int j=0;
			for(;j<n;j++)if(i!=j){
				if(a[j][i]){
					for(int k=i;k<w;k++)a[i][k]^=a[j][k];
					break;
				}
			}
			if(j==n)continue;
		}
		for(int j=0;j<n;j++)if(i!=j){
			for(int k=i;k<w;k++)a[j][k]=a[j][k]^a[i][k];
		}
		ret++;
	}
	return ret;
}

int main(){
	int N;
	scanf("%d",&N);
	vector<vector<int> >v(N);
	for(int i=0;i<N;i++){
		v[i].resize(64);
		long long n;
		scanf("%lld",&n);
		for(int j=0;n;n/=2,j++)v[i][j]=n%2;
	}
	printf("%lld\n",1LL<<gauss(v));
}
0