結果

問題 No.5001 排他的論理和でランニング
ユーザー naimonon77naimonon77
提出日時 2018-12-07 17:34:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,042 ms / 1,500 ms
コード長 3,653 bytes
コンパイル時間 2,014 ms
実行使用メモリ 10,324 KB
スコア 52,427,755
最終ジャッジ日時 2020-03-12 21:13:21
ジャッジサーバーID
(参考情報)
judge8 /
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,034 ms
6,296 KB
testcase_01 AC 1,018 ms
5,376 KB
testcase_02 AC 1,019 ms
5,384 KB
testcase_03 AC 1,022 ms
5,380 KB
testcase_04 AC 1,028 ms
6,848 KB
testcase_05 AC 1,029 ms
5,380 KB
testcase_06 AC 1,018 ms
5,380 KB
testcase_07 AC 1,027 ms
5,380 KB
testcase_08 AC 1,037 ms
9,160 KB
testcase_09 AC 1,020 ms
7,424 KB
testcase_10 AC 1,026 ms
5,380 KB
testcase_11 AC 1,027 ms
5,380 KB
testcase_12 AC 1,022 ms
5,380 KB
testcase_13 AC 1,042 ms
10,172 KB
testcase_14 AC 1,026 ms
5,980 KB
testcase_15 AC 1,021 ms
5,380 KB
testcase_16 AC 1,018 ms
5,380 KB
testcase_17 AC 1,021 ms
5,380 KB
testcase_18 AC 1,025 ms
5,744 KB
testcase_19 AC 1,022 ms
5,380 KB
testcase_20 AC 1,020 ms
5,380 KB
testcase_21 AC 1,022 ms
5,380 KB
testcase_22 AC 1,020 ms
7,484 KB
testcase_23 AC 1,016 ms
5,380 KB
testcase_24 AC 1,019 ms
5,376 KB
testcase_25 AC 1,020 ms
5,380 KB
testcase_26 AC 1,019 ms
5,376 KB
testcase_27 AC 1,024 ms
5,380 KB
testcase_28 AC 1,029 ms
5,384 KB
testcase_29 AC 1,024 ms
5,376 KB
testcase_30 AC 1,017 ms
5,376 KB
testcase_31 AC 1,031 ms
5,956 KB
testcase_32 AC 1,026 ms
5,380 KB
testcase_33 AC 1,037 ms
10,324 KB
testcase_34 AC 1,029 ms
7,368 KB
testcase_35 AC 1,029 ms
5,384 KB
testcase_36 AC 1,030 ms
6,224 KB
testcase_37 AC 1,028 ms
5,380 KB
testcase_38 AC 1,024 ms
5,376 KB
testcase_39 AC 1,021 ms
5,380 KB
testcase_40 AC 1,026 ms
5,380 KB
testcase_41 AC 1,017 ms
5,376 KB
testcase_42 AC 1,024 ms
5,380 KB
testcase_43 AC 1,024 ms
5,380 KB
testcase_44 AC 1,025 ms
5,560 KB
testcase_45 AC 1,028 ms
6,104 KB
testcase_46 AC 1,025 ms
5,376 KB
testcase_47 AC 1,021 ms
5,380 KB
testcase_48 AC 1,021 ms
5,380 KB
testcase_49 AC 1,032 ms
7,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define NOMINMAX
#define TEST_MODE true

#define _CRT_SECURE_NO_WARNINGS
#define _USE_MATH_DEFINES

#include "bits/stdc++.h"
using namespace std;
#define rep(i, n) for (int i = 0; i < (int)(n); ++i)
#define rep2(i, a, b) for (int i = (a); i < (int)(b); ++i)
#define rrep(i, n) for (int i = (n)-1; i >= 0; --i)
#define rrep2(i, a, b) for (int i = (a)-1; i >= (int)b; --i)
#define range(i, a, b, c) for (int i = a;             \
                                   c > 0 ? i < b : i > b; \
                                   i += c)
#define chmax(a, b) (a = (a) < (b) ? (b) : (a))
#define chmin(a, b) (a = (a) > (b) ? (b) : (a))
using ll = long long;
using ull = unsigned long long;
using ld = long double;
#define all(a) begin(a), end(a)
#define ifnot(a) if (not(a))
#define int long long

#ifdef LOCAL_ENV

#if TEST_MODE == true
const bool test = true;
#define dump(x) cerr << #x << " : " << (x) << " "
#define dumpl(x) dump(x) << endl
#else
const bool test = false;
#define dump(x) 
#define dumpl(x)
#endif

#else
const bool test = false;
#define dump(x) 
#define dumpl(x)
#endif

int dx[] = { 1, 0, -1, 0 };
int dy[] = { 0, 1, 0, -1 };
const int INF = (int)1 << 60;
const int undefined = INF;
const ll INFL = (ll)1 << 60;
ll mod_n = (int)1e9 + 7;
const double eps = 1e-10;
typedef long double Real;
// return -1, 0, 1
int sgn(const Real &r) { return (r > eps) - (r < -eps); }
int sgn(const Real &a, const Real &b) { return sgn(a - b); }

//.....................
const int MAX = (int)2e5 + 5;

vector<string> split(const string &str, char sep)
{
	vector<string> v;
	stringstream ss(str);
	string buffer;
	while (getline(ss, buffer, sep))
	{
		v.push_back(buffer);
	}
	return v;
}

string join(const vector<string>& v, const string delim = 0) {
	string s;
	if (!v.empty()) {
		s += v[0];
		for (decltype(v.size()) i = 1, c = v.size(); i < c; ++i) {
			if (delim != "") s += delim;
			s += v[i];
		}
	}
	return s;
}

template <class InputIterator>
int sum(InputIterator begin, InputIterator end)
{
	return accumulate(begin, end, 0ll);
}

template<typename T>
T gcd(T a, T b)
{
	T c;
	while (a != 0) {
		c = a; a = b%a;  b = c;
	}
	return b;
}

template<typename T>
T bit_count(T N) {
	T cnt = 0;
	while (N) {
		if (N & 1) cnt++;
		N >>= 1;
	}
	return cnt;
}

template<typename T>
void print_vec(ostream& ostream, vector<T> a) {
	rep(i, a.size() - 1) ostream << a[i] << " ";
	ostream << a.back() << endl;
}

ll pow_n(ll x, ll n) {
	ll res = 1;
	while (n > 0) {
		if (n & 1) res = res * x;
		x = x * x;
		n >>= 1;
	}
	return res;
}

class Solver {
public:
	int H, W;

	bool grid_ng(int y, int x) {
		return y < 0 || y >= H || x < 0 || x >= W;
	}

	struct Point {
		int x, y;
		bool operator < (const Point& r) const {
			if (y != r.y) return y < r.y;
			return x < r.x;
		}
	};

	int N, M;
	vector<int> A, ans;
	int ans_v = 0;
	int cur = 0;

	void solve() {
		clock_t start;

		cin >> N >> M;
		A.resize(N);
		rep(i, N) cin >> A[i];
		ans.resize(M);

		while (true) {
			rep(i, 10) {
				int v1 = rand() % M;
				int v2 = M + rand() % (N - M);
				swap(A[v1], A[v2]);
			}
			cur = 0;
			rep(i, M) cur ^= A[i];
			if (cur > ans_v) {
				ans_v = cur;
				rep(i, M) ans[i] = A[i];
			}
			if ((clock() - start) > CLOCKS_PER_SEC ) {
				break;
			}
		}
		vector<string> res;
		rep(i, M) {
			res.push_back(to_string(ans[i]));
		}
		cout << join(res, " ") << endl;
		dumpl(ans_v);
	}
};

signed main()
{
	srand((unsigned int)time(NULL));
	cout << fixed << setprecision(20);
	auto ptr = new Solver();
	ptr->solve();
	delete ptr;
	//while (true) {
	//	if (cin.eof() == true) break;
	//	auto ptr = new Solver();
	//	ptr->solve();
	//	delete ptr;
	//}
	return 0;
}
0