結果

問題 No.1597 Matrix Sort
ユーザー olpheolphe
提出日時 2021-07-09 21:41:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,194 bytes
コンパイル時間 1,009 ms
コンパイル使用メモリ 113,384 KB
実行使用メモリ 315,744 KB
最終ジャッジ日時 2024-07-01 15:38:59
合計ジャッジ時間 7,239 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 235 ms
315,656 KB
testcase_04 AC 242 ms
315,584 KB
testcase_05 AC 252 ms
315,684 KB
testcase_06 AC 253 ms
315,724 KB
testcase_07 AC 257 ms
315,688 KB
testcase_08 AC 214 ms
315,744 KB
testcase_09 AC 228 ms
315,704 KB
testcase_10 AC 170 ms
315,676 KB
testcase_11 AC 172 ms
315,700 KB
testcase_12 RE -
testcase_13 AC 56 ms
34,452 KB
testcase_14 AC 240 ms
315,684 KB
testcase_15 RE -
testcase_16 AC 36 ms
34,440 KB
testcase_17 AC 190 ms
315,676 KB
testcase_18 AC 238 ms
315,720 KB
testcase_19 AC 227 ms
315,620 KB
testcase_20 AC 183 ms
315,616 KB
testcase_21 AC 174 ms
315,648 KB
testcase_22 AC 173 ms
315,720 KB
testcase_23 AC 174 ms
315,720 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 154 ms
315,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "iostream"
#include "climits"
#include "list"
#include "queue"
#include "stack"
#include "set"
#include "functional"
#include "algorithm"
#include "string"
#include "map"
#include "unordered_map"
#include "unordered_set"
#include "iomanip"
#include "cmath"
#include "random"
#include "bitset"
#include "cstdio"
#include "numeric"
#include "cassert"
#include "ctime"

using namespace std;

constexpr long long int MOD = 1000000007;
//constexpr int MOD = 1000000007;
//constexpr int MOD = 998244353;
//constexpr long long int MOD = 998244353;
constexpr double EPS = 1e-8;

//int N, M, K, T, H, W, L, R;
long long int N, M, K, T, H, W, L, R;


int main() {
	ios::sync_with_stdio(false);
	cin.tie(0);

	cin >> N >> K >> M;
	vector<long long>a(2 * M);
	vector<long long>b(2 * M);
	for (int i = 0; i < N; i++) {
		cin >> a[i];
	}
	for (int i = 0; i < N; i++) {
		cin >> L;
		b[L]++;
		b[L + M]++;
	}
	for (int i = 1; i < 2 * M; i++) {
		b[i] += b[i - 1];
	}
	L = -1, R = M - 1;
	while (R - L > 1) {
		int mid = (L + R) / 2;
		long long num = 0;
		for (int i = 0; i < N; i++) {
			num += b[M + mid - a[i]] - b[M - a[i] - 1];
		}
		if (num < K)L = mid;
		else R = mid;
	}
	cout << R << endl;
}
0