結果

問題 No.1597 Matrix Sort
ユーザー Mr.SpockMr.Spock
提出日時 2021-07-18 15:29:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,105 bytes
コンパイル時間 1,700 ms
コンパイル使用メモリ 170,392 KB
実行使用メモリ 161,084 KB
最終ジャッジ日時 2024-07-08 09:13:01
合計ジャッジ時間 5,646 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 WA -
testcase_04 AC 125 ms
161,008 KB
testcase_05 AC 137 ms
161,008 KB
testcase_06 AC 138 ms
161,024 KB
testcase_07 AC 143 ms
161,052 KB
testcase_08 AC 113 ms
161,036 KB
testcase_09 AC 128 ms
160,864 KB
testcase_10 AC 93 ms
160,896 KB
testcase_11 AC 93 ms
161,084 KB
testcase_12 AC 19 ms
5,376 KB
testcase_13 AC 37 ms
20,480 KB
testcase_14 AC 129 ms
161,048 KB
testcase_15 AC 23 ms
5,376 KB
testcase_16 AC 37 ms
20,352 KB
testcase_17 AC 110 ms
161,008 KB
testcase_18 AC 121 ms
161,016 KB
testcase_19 AC 106 ms
160,896 KB
testcase_20 AC 103 ms
161,076 KB
testcase_21 AC 100 ms
161,020 KB
testcase_22 AC 101 ms
161,024 KB
testcase_23 AC 98 ms
161,036 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 74 ms
159,528 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 = 0, R = p + 7;
	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