結果

問題 No.1597 Matrix Sort
ユーザー Mr.SpockMr.Spock
提出日時 2021-07-18 15:32:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 139 ms / 1,500 ms
コード長 1,106 bytes
コンパイル時間 1,427 ms
コンパイル使用メモリ 171,788 KB
実行使用メモリ 161,064 KB
最終ジャッジ日時 2024-07-08 09:14:53
合計ジャッジ時間 4,935 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 127 ms
161,024 KB
testcase_04 AC 125 ms
161,024 KB
testcase_05 AC 134 ms
161,024 KB
testcase_06 AC 137 ms
160,928 KB
testcase_07 AC 139 ms
161,000 KB
testcase_08 AC 128 ms
161,024 KB
testcase_09 AC 133 ms
161,020 KB
testcase_10 AC 93 ms
161,044 KB
testcase_11 AC 97 ms
161,024 KB
testcase_12 AC 19 ms
5,376 KB
testcase_13 AC 38 ms
20,384 KB
testcase_14 AC 129 ms
161,024 KB
testcase_15 AC 23 ms
5,376 KB
testcase_16 AC 36 ms
20,440 KB
testcase_17 AC 112 ms
161,036 KB
testcase_18 AC 118 ms
161,008 KB
testcase_19 AC 107 ms
161,024 KB
testcase_20 AC 103 ms
160,904 KB
testcase_21 AC 102 ms
161,064 KB
testcase_22 AC 98 ms
161,024 KB
testcase_23 AC 96 ms
160,964 KB
testcase_24 AC 14 ms
5,376 KB
testcase_25 AC 12 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 75 ms
159,488 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'void logger(std::string, Args&& ...)':
main.cpp:9:53: warning: fold-expressions only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
    9 |         (..., (cout << delim << values, delim = ", "));
      |                                                     ^

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define deb(...) logger(#__VA_ARGS__, __VA_ARGS__)
template<typename ...Args>
void logger(string vars, Args&&... values) {
	cout << vars << " = [";
	string delim = "";
	(..., (cout << delim << values, delim = ", "));
	cout << "]" << " ";
}
ll n, k, p;
vector<ll>x, y, dp;
bool solve(ll mid) {
	ll ans = 0;
	for (ll i = 0; i < n; i++) {
		ans += dp[p + mid - x[i]] - dp[p - x[i] - 1];
		if (mid - x[i] >= 0) {
			ans += dp[mid - x[i]];
		}
	}
	return (ans >= k);
}
void solve() {
	cin >> n >> k >> p;
	x.resize(n);
	y.resize(n);
	dp.resize(2 * p + 1);
	dp.assign(2 * p + 1, 0);
	for (ll i = 0; i < n; i++) {
		cin >> x[i];
	}
	for (ll i = 0; i < n; i++) {
		cin >> y[i];
	}
	for (int i = 0; i < n; i++) {
		dp[y[i]]++;
	}
	for (ll i = 1; i <= 2 * p; i++) {
		dp[i] += dp[i - 1];
	}
	ll L = -1, R = p + 1;
	while (R - L > 1) {
		ll mid = (L + R) / 2;
		if (solve(mid))R = mid;
		else L = mid;
	}
	cout << R << endl;
}
int main() {
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
	ll T;
	T = 1;
	//cin >> T;
	while (T--) {
		solve();
	}
}
0