結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー zerokugizerokugi
提出日時 2015-04-17 02:00:01
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 395 ms / 5,000 ms
コード長 2,705 bytes
コンパイル時間 1,091 ms
コンパイル使用メモリ 109,100 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-04 11:18:44
合計ジャッジ時間 8,468 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 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 274 ms
5,376 KB
testcase_09 AC 49 ms
5,376 KB
testcase_10 AC 198 ms
5,376 KB
testcase_11 AC 134 ms
5,376 KB
testcase_12 AC 325 ms
5,376 KB
testcase_13 AC 342 ms
5,376 KB
testcase_14 AC 186 ms
5,376 KB
testcase_15 AC 374 ms
5,376 KB
testcase_16 AC 306 ms
5,376 KB
testcase_17 AC 338 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 11 ms
5,376 KB
testcase_21 AC 388 ms
5,376 KB
testcase_22 AC 394 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 220 ms
5,376 KB
testcase_29 AC 323 ms
5,376 KB
testcase_30 AC 273 ms
5,376 KB
testcase_31 AC 228 ms
5,376 KB
testcase_32 AC 293 ms
5,376 KB
testcase_33 AC 377 ms
5,376 KB
testcase_34 AC 379 ms
5,376 KB
testcase_35 AC 388 ms
5,376 KB
testcase_36 AC 395 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cmath>
#include <cstring>
#include <cstdlib>
#include <climits>
#include <ctime>
#include <queue>
#include <stack>
#include <algorithm>
#include <list>
#include <vector>
#include <set>
#include <map>
#include <iostream>
#include <deque>
#include <complex>
#include <string>
#include <iomanip>
#include <sstream>
#include <bitset>
#include <valarray>
#include <unordered_map>
#include <iterator>
#include <functional>
#include <cassert>
using namespace std;
typedef long long int ll;
typedef unsigned int uint;
typedef unsigned char uchar;
typedef unsigned long long ull;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
typedef vector<int> vi;

#define REP(i,x) for(int i=0;i<(int)(x);i++)
#define REPS(i,x) for(int i=1;i<=(int)(x);i++)
#define RREP(i,x) for(int i=((int)(x)-1);i>=0;i--)
#define RREPS(i,x) for(int i=((int)(x));i>0;i--)
#define FOR(i,c) for(__typeof((c).begin())i=(c).begin();i!=(c).end();i++)
#define RFOR(i,c) for(__typeof((c).rbegin())i=(c).rbegin();i!=(c).rend();i++)
#define ALL(container) (container).begin(), (container).end()
#define RALL(container) (container).rbegin(), (container).rend()
#define SZ(container) ((int)container.size())
#define mp(a,b) make_pair(a, b)
#define pb push_back
#define eb emplace_back
#define UNIQUE(v) v.erase( unique(v.begin(), v.end()), v.end() );

template<class T> bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T> bool chmin(T &a, const T &b) { if (a>b) { a=b; return 1; } return 0; }
template<class T> ostream& operator<<(ostream &os, const vector<T> &t) {
os<<"["; FOR(it,t) {if(it!=t.begin()) os<<","; os<<*it;} os<<"]"; return os;
}
template<class T> ostream& operator<<(ostream &os, const set<T> &t) {
os<<"{"; FOR(it,t) {if(it!=t.begin()) os<<","; os<<*it;} os<<"}"; return os;
}
template<class S, class T> ostream& operator<<(ostream &os, const pair<S,T> &t) { return os<<"("<<t.first<<","<<t.second<<")";}
template<class S, class T> pair<S,T> operator+(const pair<S,T> &s, const pair<S,T> &t){ return pair<S,T>(s.first+t.first, s.second+t.second);}
template<class S, class T> pair<S,T> operator-(const pair<S,T> &s, const pair<S,T> &t){ return pair<S,T>(s.first-t.first, s.second-t.second);}

const int INF = 1<<28;
const double EPS = 1e-8;
const int MOD = 1000000007;


int n;

int main(int argc, char *argv[]){
	ios::sync_with_stdio(false);
	cin >> n;
	vector<ll> d(n);
	REP(i, n) cin >> d[i];
	sort(RALL(d));
	int ans = 0, j=0;
	RREP(i, 61){
		int p = -1;
		if(j >= n || !(d[j] & 1ll<<i)) continue;
		for(int k=j+1;k<n;k++) if((d[k] & 1ll<<i)) d[k] ^= d[j];
		sort(d.begin()+(++j), d.end(), greater<ll>());
		ans ++;
	}
	cout << (1ll<<ans) << endl;
	return 0;
}
0