結果

問題 No.5001 排他的論理和でランニング
ユーザー ldsybldsyb
提出日時 2018-03-24 11:06:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,494 ms / 1,500 ms
コード長 669 bytes
コンパイル時間 1,412 ms
実行使用メモリ 7,484 KB
スコア 52,428,749
最終ジャッジ日時 2020-03-12 20:23:16
ジャッジサーバーID
(参考情報)
judge6 /
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,490 ms
5,376 KB
testcase_01 AC 1,487 ms
5,384 KB
testcase_02 AC 1,488 ms
5,380 KB
testcase_03 AC 1,490 ms
5,376 KB
testcase_04 AC 1,492 ms
5,380 KB
testcase_05 AC 1,489 ms
5,376 KB
testcase_06 AC 1,488 ms
6,148 KB
testcase_07 AC 1,489 ms
5,376 KB
testcase_08 AC 1,494 ms
5,380 KB
testcase_09 AC 1,487 ms
5,376 KB
testcase_10 AC 1,489 ms
5,380 KB
testcase_11 AC 1,490 ms
5,376 KB
testcase_12 AC 1,487 ms
5,380 KB
testcase_13 AC 1,494 ms
5,380 KB
testcase_14 AC 1,490 ms
5,380 KB
testcase_15 AC 1,488 ms
5,376 KB
testcase_16 AC 1,487 ms
5,384 KB
testcase_17 AC 1,489 ms
5,380 KB
testcase_18 AC 1,490 ms
5,380 KB
testcase_19 AC 1,488 ms
5,376 KB
testcase_20 AC 1,487 ms
5,376 KB
testcase_21 AC 1,488 ms
5,376 KB
testcase_22 AC 1,487 ms
5,380 KB
testcase_23 AC 1,487 ms
5,380 KB
testcase_24 AC 1,487 ms
5,384 KB
testcase_25 AC 1,487 ms
5,376 KB
testcase_26 AC 1,487 ms
5,380 KB
testcase_27 AC 1,487 ms
6,148 KB
testcase_28 AC 1,490 ms
5,384 KB
testcase_29 AC 1,490 ms
5,376 KB
testcase_30 AC 1,488 ms
5,380 KB
testcase_31 AC 1,490 ms
5,376 KB
testcase_32 AC 1,488 ms
5,380 KB
testcase_33 AC 1,493 ms
5,376 KB
testcase_34 AC 1,492 ms
5,376 KB
testcase_35 AC 1,490 ms
5,380 KB
testcase_36 AC 1,491 ms
5,384 KB
testcase_37 AC 1,487 ms
5,376 KB
testcase_38 AC 1,488 ms
5,380 KB
testcase_39 AC 1,489 ms
5,380 KB
testcase_40 AC 1,488 ms
5,380 KB
testcase_41 AC 1,487 ms
5,376 KB
testcase_42 AC 1,489 ms
7,484 KB
testcase_43 AC 1,490 ms
5,380 KB
testcase_44 AC 1,490 ms
7,420 KB
testcase_45 AC 1,490 ms
5,376 KB
testcase_46 AC 1,488 ms
5,380 KB
testcase_47 AC 1,489 ms
5,380 KB
testcase_48 AC 1,488 ms
6,148 KB
testcase_49 AC 1,492 ms
5,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using namespace chrono;

int main() {
	auto start = system_clock::now();
	random_device rnd;
	mt19937 mt(rnd());
	int n, m;
	cin >> n >> m;
	int a[n];
	uniform_int_distribution<> rand(0, n - 1);
	for (auto &i : a) {
		cin >> i;
	}
	if (m < n) {
		int d = n - m, x = 0;
		for (int i = 0; i < m; i++) {
			x ^= a[i];
		}
		while (duration_cast<milliseconds>(system_clock::now() - start).count() < 1485) {
			int i = rand(mt) % m, j = rand(mt) % d + m;
			int y = x ^ a[i] ^ a[j];
			if (x < y) {
				x = y;
				swap(a[i], a[j]);
			}
		}
	}
	for (int i = 0; i < m; i++) {
		cout << a[i] << ' ';
	}
	cout << endl;
	return 0;
}
0