結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 119 ms
5,376 KB
testcase_09 AC 26 ms
5,376 KB
testcase_10 AC 92 ms
5,376 KB
testcase_11 AC 66 ms
5,376 KB
testcase_12 AC 139 ms
5,376 KB
testcase_13 AC 143 ms
5,376 KB
testcase_14 AC 82 ms
5,376 KB
testcase_15 AC 167 ms
5,376 KB
testcase_16 AC 135 ms
5,376 KB
testcase_17 AC 143 ms
5,376 KB
testcase_18 WA -
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 85 ms
5,376 KB
testcase_21 AC 165 ms
5,376 KB
testcase_22 AC 170 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 1 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 96 ms
5,376 KB
testcase_29 AC 146 ms
5,376 KB
testcase_30 AC 118 ms
5,376 KB
testcase_31 AC 100 ms
5,376 KB
testcase_32 AC 127 ms
5,376 KB
testcase_33 AC 163 ms
5,376 KB
testcase_34 AC 162 ms
5,376 KB
testcase_35 AC 165 ms
5,376 KB
testcase_36 AC 170 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++){
		sort(d+cnt, d+n);
		ll b = 1LL<<i;
		int k;
		for(k = cnt; k < n; k++) if(d[k]&b) break;
		if(!(d[k]&b)) 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