結果

問題 No.1597 Matrix Sort
ユーザー kenskens
提出日時 2021-07-10 01:17:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 404 ms / 1,500 ms
コード長 657 bytes
コンパイル時間 2,239 ms
コンパイル使用メモリ 206,060 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-01 20:13:49
合計ジャッジ時間 9,502 ms
ジャッジサーバーID
(参考情報)
judge3 / 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 355 ms
5,376 KB
testcase_04 AC 374 ms
5,376 KB
testcase_05 AC 399 ms
5,376 KB
testcase_06 AC 387 ms
5,376 KB
testcase_07 AC 404 ms
5,376 KB
testcase_08 AC 319 ms
5,376 KB
testcase_09 AC 339 ms
5,376 KB
testcase_10 AC 238 ms
5,376 KB
testcase_11 AC 202 ms
5,376 KB
testcase_12 AC 173 ms
5,376 KB
testcase_13 AC 296 ms
5,376 KB
testcase_14 AC 338 ms
5,376 KB
testcase_15 AC 146 ms
5,376 KB
testcase_16 AC 217 ms
5,376 KB
testcase_17 AC 250 ms
5,376 KB
testcase_18 AC 362 ms
5,376 KB
testcase_19 AC 281 ms
5,376 KB
testcase_20 AC 238 ms
5,376 KB
testcase_21 AC 234 ms
5,376 KB
testcase_22 AC 238 ms
5,376 KB
testcase_23 AC 232 ms
5,376 KB
testcase_24 AC 44 ms
5,376 KB
testcase_25 AC 41 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 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i = 0; i < (int)n; i++)
using ll = long long;

int main(){
  ll n, k, p;
  cin >> n >> k >> p;
  vector<ll> a(n), b(n);
  rep(i,n) cin >> a[i];
  rep(i,n) cin >> b[i];
  sort(a.begin(),a.end());
  sort(b.begin(),b.end());
  ll l = -1, r = p-1;
  while(r-l > 1) {
    ll m = (l + r)/2;
    ll cnt = 0;
    rep(i,n) {
      cnt += upper_bound(b.begin(),b.end(),m-a[i]) - lower_bound(b.begin(),b.end(),-a[i]);
      cnt += upper_bound(b.begin(),b.end(),p+m-a[i]) - lower_bound(b.begin(),b.end(),p-a[i]);;
    }
    if(cnt < k) l = m;
    else r = m;
  }
  cout << r << endl;
  return 0;
}
0