結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー minamiminami
提出日時 2019-03-26 14:16:30
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 612 ms / 5,000 ms
コード長 4,617 bytes
コンパイル時間 1,849 ms
コンパイル使用メモリ 178,128 KB
実行使用メモリ 59,056 KB
最終ジャッジ日時 2023-09-17 17:49:48
合計ジャッジ時間 13,788 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 424 ms
42,628 KB
testcase_09 AC 82 ms
11,268 KB
testcase_10 AC 311 ms
33,192 KB
testcase_11 AC 215 ms
24,720 KB
testcase_12 AC 482 ms
49,040 KB
testcase_13 AC 529 ms
52,832 KB
testcase_14 AC 293 ms
31,496 KB
testcase_15 AC 588 ms
57,208 KB
testcase_16 AC 481 ms
47,868 KB
testcase_17 AC 523 ms
51,676 KB
testcase_18 AC 2 ms
4,376 KB
testcase_19 AC 1 ms
4,376 KB
testcase_20 AC 128 ms
59,000 KB
testcase_21 AC 611 ms
59,056 KB
testcase_22 AC 612 ms
58,928 KB
testcase_23 AC 1 ms
4,380 KB
testcase_24 AC 2 ms
4,380 KB
testcase_25 AC 2 ms
4,380 KB
testcase_26 AC 2 ms
4,380 KB
testcase_27 AC 2 ms
4,376 KB
testcase_28 AC 346 ms
36,628 KB
testcase_29 AC 505 ms
50,476 KB
testcase_30 AC 430 ms
44,988 KB
testcase_31 AC 369 ms
39,420 KB
testcase_32 AC 474 ms
48,344 KB
testcase_33 AC 600 ms
57,316 KB
testcase_34 AC 575 ms
56,616 KB
testcase_35 AC 605 ms
58,332 KB
testcase_36 AC 605 ms
58,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#ifdef _DEBUG
#include "dump.hpp"
#else
#define dump(...)
#endif

#define int long long
#define rep(i,a,b) for(int i=(a);i<(b);i++)
#define rrep(i,a,b) for(int i=(b)-1;i>=(a);i--)
#define all(c) begin(c),end(c)
const int INF = sizeof(int) == sizeof(long long) ? 0x3f3f3f3f3f3f3f3fLL : 0x3f3f3f3f;
const int MOD = 1'000'000'007;
template<class T> bool chmax(T &a, const T &b) { if (a < b) { a = b; return true; } return false; }
template<class T> bool chmin(T &a, const T &b) { if (b < a) { a = b; return true; } return false; }

template<int MOD>
struct ModInt {
	static const int kMod = MOD;
	unsigned x;
	ModInt() :x(0) {}
	ModInt(signed x_) { x_ %= MOD; if (x_ < 0)x_ += MOD; x = x_; }
	ModInt(signed long long x_) { x_ %= MOD; if (x_ < 0)x_ += MOD; x = x_; }
	int get()const { return (int)x; }
	ModInt &operator+=(ModInt m) { if ((x += m.x) >= MOD)x -= MOD; return *this; }
	ModInt &operator-=(ModInt m) { if ((x += MOD - m.x) >= MOD)x -= MOD; return *this; }
	ModInt &operator*=(ModInt m) { x = (unsigned long long)x*m.x%MOD; return *this; }
	ModInt &operator/=(ModInt m) { return *this *= m.inverse(); }
	ModInt operator+(ModInt m)const { return ModInt(*this) += m; }
	ModInt operator-(ModInt m)const { return ModInt(*this) -= m; }
	ModInt operator*(ModInt m)const { return ModInt(*this) *= m; }
	ModInt operator/(ModInt m)const { return ModInt(*this) /= m; }
	ModInt operator-()const { return ModInt(kMod - x); }
	bool operator==(ModInt m)const { return x == m.x; }
	bool operator!=(ModInt m)const { return x != m.x; }
	ModInt inverse()const {
		signed a = x, b = MOD, u = 1, v = 0;
		while (b) {
			signed t = a / b;
			a -= t * b; swap(a, b);
			u -= t * v; swap(u, v);
		}
		if (u < 0)u += MOD;
		return ModInt(u);
	}
};
template<int MOD>
ostream &operator<<(ostream &os, const ModInt<MOD> &m) { return os << m.x; }
template<int MOD>
istream &operator>>(istream &is, ModInt<MOD> &m) { signed long long s; is >> s; m = ModInt<MOD>(s); return is; };

using mint = ModInt<2>;

template<int MOD>
ModInt<MOD> pow(ModInt<MOD> a, unsigned long long k) {
	ModInt<MOD> r = 1;
	while (k) {
		if (k & 1)r *= a;
		a *= a;
		k >>= 1;
	}
	return r;
}

// ガウスの消去法(Gauss elimination)
// O(n^3)
//
// 戻り値: (解が存在するか, rank, 解)
//   解が複数ある場合は適当な解を出力する
//
// Verified:
//   http://judge.u-aizu.ac.jp/onlinejudge/review.jsp?rid=3437138
//   http://judge.u-aizu.ac.jp/onlinejudge/review.jsp?rid=3437187
//   https://yukicoder.me/submissions/326809 (mod 2)

using Num = mint;
using Vec = vector<Num>;
using Mat = vector<Vec>;
tuple<bool, int, Vec> gaussianEliminationMod(Mat A, Vec b) {
	const int n = A.size(), m = A[0].size();
	assert(m <= b.size());
	if (n > b.size())b.resize(n);
	int rank = 0, cj = 0;
	while (rank < n && cj < m) {
		// A[rank][cj] が最大になるように
		for (int i = rank + 1; i < n; i++) {
			if (A[i][cj].get() > A[rank][cj].get()) {
				A[i].swap(A[rank]);
				swap(b[i], b[rank]);
			}
		}
		if (A[rank][cj].get()) {
			// 係数を 1 に
			Num d = A[rank][cj];
			for (int j = 0; j < m; j++)
				A[rank][j] /= d;
			b[rank] /= d;
			// 前進消去(forward elimination)
			for (int i = rank + 1; i < n; i++) {
				Num k = A[i][cj];
				for (int j = 0; j < m; j++)
					A[i][j] -= k * A[rank][j];
				b[i] -= k * b[rank];
			}
			rank++;
		}
		cj++;
	}
	// 0 != b[i] だったら不能
	for (int i = rank; i < n; i++)
		if (b[i].get())
			return make_tuple(false, rank, Vec());
	// 不定
	// rank != m
	// cj < m => n < m
	// n == m なら適当な解を構築する
	// n != m でも解を構築できるようにする
	if (rank < m || cj < m) {
		if (n != m)
			return make_tuple(true, rank, Vec());
		int ci = rank;
		for (int i = 0; i < n; i++) {
			if (A[i][i].get() == 0) {
				if (i != ci) {
					A[i].swap(A[ci]);
					swap(b[i], b[ci]);
				}
				ci++;
				for (int j = 0; j < m; j++)
					A[i][j] = 0;
				A[i][i] = 1;
				b[i] = 0; // 任意の値で良い
			}
		}
	}
	// 後退代入(back substitution)
	// 1 * * | *     1 * 0 | *
	// 0 1 * | *  -> 0 1 0 | *
	// 0 0 1 | *     0 0 1 | *
	for (int j = m - 1; j >= 0; j--)
		for (int i = 0; i < j; i++)
			b[i] -= b[j] * A[i][j];
	return make_tuple(true, rank, b);
}

signed main() {
	cin.tie(0);
	ios::sync_with_stdio(false);
	int N; cin >> N;
	vector<int> A(N); rep(i, 0, N) {
		cin >> A[i];
	}
	Mat a(N, Vec(61));
	rep(i, 0, N) {
		rep(j, 0, 61) {
			a[i][j] = A[i] >> j & 1;
		}
	}
	Vec b(61);
	auto res = gaussianEliminationMod(a, b);
	dump(res);
	cout << (1LL << get<1>(res)) << endl;
	return 0;
}
0