結果

問題 No.2977 Kth Xor Pair
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-12-03 11:28:58
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 2,919 ms / 3,000 ms
コード長 703 bytes
コンパイル時間 2,489 ms
コンパイル使用メモリ 209,260 KB
実行使用メモリ 16,512 KB
最終ジャッジ日時 2024-12-03 11:29:59
合計ジャッジ時間 57,892 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 6 ms
5,248 KB
testcase_03 AC 7 ms
5,248 KB
testcase_04 AC 7 ms
5,248 KB
testcase_05 AC 6 ms
5,248 KB
testcase_06 AC 7 ms
5,248 KB
testcase_07 AC 1,346 ms
10,496 KB
testcase_08 AC 2,672 ms
15,744 KB
testcase_09 AC 2,518 ms
15,232 KB
testcase_10 AC 2,591 ms
15,232 KB
testcase_11 AC 2,744 ms
15,616 KB
testcase_12 AC 2,616 ms
15,232 KB
testcase_13 AC 2,762 ms
16,000 KB
testcase_14 AC 1,249 ms
10,368 KB
testcase_15 AC 2,284 ms
14,336 KB
testcase_16 AC 2,919 ms
16,384 KB
testcase_17 AC 2,787 ms
16,384 KB
testcase_18 AC 2,855 ms
16,512 KB
testcase_19 AC 2,766 ms
16,384 KB
testcase_20 AC 2,828 ms
16,384 KB
testcase_21 AC 2,877 ms
16,384 KB
testcase_22 AC 2,648 ms
16,512 KB
testcase_23 AC 2,688 ms
16,384 KB
testcase_24 AC 2,667 ms
16,384 KB
testcase_25 AC 2,903 ms
16,384 KB
testcase_26 AC 2,683 ms
16,384 KB
testcase_27 AC 344 ms
7,808 KB
testcase_28 AC 331 ms
7,808 KB
testcase_29 AC 333 ms
7,808 KB
testcase_30 AC 347 ms
7,808 KB
testcase_31 AC 329 ms
7,808 KB
testcase_32 AC 77 ms
5,248 KB
testcase_33 AC 83 ms
5,248 KB
testcase_34 AC 82 ms
5,248 KB
testcase_35 AC 84 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

void fast_io() {
	ios_base::sync_with_stdio(false);
	cin.tie(nullptr);
}

int main() {
	fast_io();
	int n;
	long long k;
	cin >> n >> k;
	vector<int> a(n);
	for (int i = 0; i < n; i++) {
		cin >> a[i];
	}
	k--;
	int ans = 0;
	for (int i = 30; i >= 0; i--) {
		map<int, long long> cnt;
		int msk = ~((1 << i) - 1);
		for (int j = 0; j < n; j++) {
			cnt[a[j] & msk]++;
		}
		long long cur = 0;
		for (auto [key, val] : cnt) {
			if ((key ^ ans) > key && cnt.count(key ^ ans)) {
				cur += val * cnt[key ^ ans];
			} else if (ans == 0) {
				cur += val * (val - 1) / 2;
			}
		}
		if (cur <= k) {
			ans |= 1 << i;
			k -= cur;
		}
	}
	cout << ans << endl;
}
0