結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー Lepton_sLepton_s
提出日時 2015-04-17 08:57:44
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 50 ms / 5,000 ms
コード長 924 bytes
コンパイル時間 565 ms
コンパイル使用メモリ 83,672 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-04 11:23:21
合計ジャッジ時間 2,722 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 36 ms
5,376 KB
testcase_09 AC 8 ms
5,376 KB
testcase_10 AC 27 ms
5,376 KB
testcase_11 AC 20 ms
5,376 KB
testcase_12 AC 42 ms
5,376 KB
testcase_13 AC 46 ms
5,376 KB
testcase_14 AC 27 ms
5,376 KB
testcase_15 AC 49 ms
5,376 KB
testcase_16 AC 42 ms
5,376 KB
testcase_17 AC 43 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 15 ms
5,376 KB
testcase_21 AC 50 ms
5,376 KB
testcase_22 AC 49 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 30 ms
5,376 KB
testcase_29 AC 41 ms
5,376 KB
testcase_30 AC 37 ms
5,376 KB
testcase_31 AC 32 ms
5,376 KB
testcase_32 AC 39 ms
5,376 KB
testcase_33 AC 47 ms
5,376 KB
testcase_34 AC 47 ms
5,376 KB
testcase_35 AC 49 ms
5,376 KB
testcase_36 AC 49 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:34:45: warning: format ‘%ld’ expects argument of type ‘long int*’, but argument 2 has type ‘ll*’ {aka ‘long long int*’} [-Wformat=]
   34 |         for(int i = 0; i < n; i++) scanf("%ld", d+i);
      |                                           ~~^   ~~~
      |                                             |    |
      |                                             |    ll* {aka long long int*}
      |                                             long int*
      |                                           %lld
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:34:41: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   34 |         for(int i = 0; i < n; i++) scanf("%ld", d+i);
      |                                    ~~~~~^~~~~~~~~~~~

ソースコード

diff #

#include <algorithm>
#include <climits>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <ctime>
#include <iostream>
#include <sstream>
#include <functional>
#include <map>
#include <string>
#include <cstring>
#include <vector>
#include <queue>
#include <stack>
#include <deque>
#include <set>
#include <list>
#include <numeric>
using namespace std;
const double PI = 3.14159265358979323846;
const double EPS = 1e-12;
const int INF = 1<<25;
typedef pair<int,int> P;
typedef long long ll;
typedef unsigned long long ull;

#define N 100000
ll d[N];

int main(){
	int n;
	scanf("%d", &n);
	for(int i = 0; i < n; i++) scanf("%ld", d+i);
	int cnt = 0;
	for(int i = 0; i <= 60; i++){
		ll b = 1LL<<i;
		int k;
		for(k = cnt; k < n; k++) if(d[k]&b) break;
		if(k==n) continue;
		swap(d[cnt], d[k]);
		k = cnt++;
		for(int j = cnt; j < n; j++){
			if(d[j]&b) d[j] ^= d[k];
		}
	}
	cout<<(1LL<<cnt)<<endl;
	return 0;
}
0