結果

問題 No.1597 Matrix Sort
ユーザー haruki_4936haruki_4936
提出日時 2022-02-13 03:24:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 363 ms / 1,500 ms
コード長 1,699 bytes
コンパイル時間 4,589 ms
コンパイル使用メモリ 265,524 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-29 05:25:17
合計ジャッジ時間 12,165 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 326 ms
5,376 KB
testcase_04 AC 340 ms
5,376 KB
testcase_05 AC 357 ms
5,376 KB
testcase_06 AC 347 ms
5,376 KB
testcase_07 AC 363 ms
5,376 KB
testcase_08 AC 283 ms
5,376 KB
testcase_09 AC 291 ms
5,376 KB
testcase_10 AC 202 ms
5,376 KB
testcase_11 AC 178 ms
5,376 KB
testcase_12 AC 156 ms
5,376 KB
testcase_13 AC 269 ms
5,376 KB
testcase_14 AC 306 ms
5,376 KB
testcase_15 AC 128 ms
5,376 KB
testcase_16 AC 186 ms
5,376 KB
testcase_17 AC 214 ms
5,376 KB
testcase_18 AC 325 ms
5,376 KB
testcase_19 AC 246 ms
5,376 KB
testcase_20 AC 205 ms
5,376 KB
testcase_21 AC 199 ms
5,376 KB
testcase_22 AC 202 ms
5,376 KB
testcase_23 AC 189 ms
5,376 KB
testcase_24 AC 44 ms
5,376 KB
testcase_25 AC 40 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 #

// #define _GLIBCXX_DEBUG
#include<bits/stdc++.h>
#include <atcoder/all>
#define rep(i, n) for (long long i = 0; i < (n); i++)
#define rep1(i, n) for(long long i = 1; i <= (n); i++)
#define all(v) v.begin(),v.end()
#define decimal(n) cout << fixed << setprecision(n);
using namespace std; 
using namespace atcoder;
using ll = long long; using vl = vector<ll>; using P = pair<ll,ll>;
using vvl = vector<vl>; using vc = vector<char>; using vvc = vector<vc>;
// using mint = modint998244353;
using mint = modint1000000007;
const ll MOD = 1000000007;
const ll MAX = 2000100; const ll inf = 3e18; const long double pi = acos(-1);
template<class T>bool chmax(T& a, const T& b) { if (a < b) { a = b; return 1; } return 0; }
template<class T>bool chmin(T& a, const T& b) { if (b < a) { a = b; return 1; } return 0; }
ll lcm(ll a,ll b){ return (a*b) / gcd(a,b); }

ll n,k,p;
vl a,b;

//ここに適切な判断条件を書く
bool isOK(ll index){
  ll cnt = 0;

  rep(i, n){
    cnt += upper_bound(all(b), index - a[i]) - b.begin();
    cnt += upper_bound(all(b), p + index - a[i]) - lower_bound(all(b), p - a[i]);
  }

  if(cnt >= k) return true;
  return false;
}

//臨機応変に引数を書き換える
ll binary_search() {
//どっちがngか,どっちがokか認識しているか?
//探索範囲の上限,下限をしっかり理解しているか?
   ll ng = -1;
   ll ok = p - 1;
   while (abs(ok - ng) > 1) {
      ll mid = (ok + ng) / 2;
      if (isOK(mid)) ok = mid;
      else ng = mid;
   }
   return ok;
}

int main(){
  cin >> n >> k >> p; a.resize(n); b.resize(n);
  rep(i, n) cin >> a[i]; rep(i, n) cin >> b[i];

  sort(all(a)); sort(all(b));
  cout << binary_search() << endl;
}
0