結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 144 ms
23,168 KB
testcase_09 AC 28 ms
7,048 KB
testcase_10 AC 106 ms
18,432 KB
testcase_11 AC 76 ms
13,952 KB
testcase_12 AC 177 ms
26,496 KB
testcase_13 AC 202 ms
28,672 KB
testcase_14 AC 101 ms
17,536 KB
testcase_15 AC 214 ms
30,592 KB
testcase_16 AC 165 ms
26,112 KB
testcase_17 AC 193 ms
27,776 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 76 ms
31,616 KB
testcase_21 AC 234 ms
31,744 KB
testcase_22 AC 226 ms
31,584 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 WA -
testcase_25 AC 1 ms
6,944 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 214 ms
30,720 KB
testcase_34 AC 207 ms
30,592 KB
testcase_35 AC 221 ms
31,360 KB
testcase_36 AC 219 ms
31,232 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:36:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   36 |         scanf("%d",&N);
      |         ~~~~~^~~~~~~~~
main.cpp:41:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   41 |                 scanf("%lld",&n);
      |                 ~~~~~^~~~~~~~~~~

ソースコード

diff #

//#include "inspect.hpp"
#include <vector>
#include <algorithm>
#include <cstdio>
#include <cmath>
using namespace std;

int gauss(vector<vector<int> > &a){
	if(a.empty())return 0;
	//cout<<a<<endl;
	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=i+1;
			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++;
	}
	//cout<<a<<endl;
	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