結果

問題 No.1597 Matrix Sort
ユーザー hangin-svghangin-svg
提出日時 2021-07-10 03:10:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 365 ms / 1,500 ms
コード長 835 bytes
コンパイル時間 1,833 ms
コンパイル使用メモリ 171,628 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-01 22:32:22
合計ジャッジ時間 8,807 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 331 ms
6,944 KB
testcase_04 AC 341 ms
6,944 KB
testcase_05 AC 364 ms
6,940 KB
testcase_06 AC 365 ms
6,944 KB
testcase_07 AC 345 ms
6,940 KB
testcase_08 AC 297 ms
6,940 KB
testcase_09 AC 299 ms
6,944 KB
testcase_10 AC 216 ms
6,944 KB
testcase_11 AC 197 ms
6,944 KB
testcase_12 AC 161 ms
6,940 KB
testcase_13 AC 281 ms
6,940 KB
testcase_14 AC 315 ms
6,944 KB
testcase_15 AC 141 ms
6,940 KB
testcase_16 AC 200 ms
6,940 KB
testcase_17 AC 231 ms
6,940 KB
testcase_18 AC 337 ms
6,944 KB
testcase_19 AC 267 ms
6,944 KB
testcase_20 AC 221 ms
6,944 KB
testcase_21 AC 214 ms
6,944 KB
testcase_22 AC 217 ms
6,944 KB
testcase_23 AC 212 ms
6,944 KB
testcase_24 AC 47 ms
6,940 KB
testcase_25 AC 46 ms
6,940 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;

int n,p;

int count(vector<int> &a,int b,int l){
  auto left = lower_bound(a.begin(), a.end(),l-b);
  auto mid = lower_bound(a.begin(), a.end(),p-b);
  auto right = lower_bound(a.begin(), a.end(),l+p-b);

  return distance(a.begin(), left) + distance(mid, right);
}

int main(){

  ll k;
  cin >> n >> k >> p;
  vector<int> a(n), b(n);
  for(int i=0; i<n; ++i) 
    cin >> a[i];
  for(int i=0; i<n; ++i)
    cin >> b[i];

  sort(a.begin(), a.end());
  sort(b.begin(), b.end());

  ll ok = -1, ng = 2*p, check = (ok+ng)/2;
  while(ng-ok>1){
    check = (ok+ng)/2;
    ll accum = 0;
    for(int i=0; i<n; ++i) {
      accum += count(a,b[i],check);
    }
    if( accum < k ) ok=check;
    else ng = check;
  }

  cout << ok << endl;


}
0