結果

問題 No.1597 Matrix Sort
ユーザー umezoumezo
提出日時 2021-07-09 23:08:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 280 ms / 1,500 ms
コード長 700 bytes
コンパイル時間 2,091 ms
コンパイル使用メモリ 203,288 KB
実行使用メモリ 6,656 KB
最終ジャッジ日時 2024-07-01 18:13:17
合計ジャッジ時間 7,280 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 266 ms
6,528 KB
testcase_04 AC 280 ms
6,400 KB
testcase_05 AC 272 ms
6,528 KB
testcase_06 AC 271 ms
6,528 KB
testcase_07 AC 270 ms
6,528 KB
testcase_08 AC 205 ms
6,528 KB
testcase_09 AC 212 ms
6,656 KB
testcase_10 AC 124 ms
6,656 KB
testcase_11 AC 121 ms
6,528 KB
testcase_12 AC 113 ms
6,528 KB
testcase_13 AC 216 ms
6,528 KB
testcase_14 AC 247 ms
6,400 KB
testcase_15 AC 79 ms
6,656 KB
testcase_16 AC 117 ms
6,528 KB
testcase_17 AC 133 ms
6,528 KB
testcase_18 AC 264 ms
6,656 KB
testcase_19 AC 176 ms
6,528 KB
testcase_20 AC 135 ms
6,528 KB
testcase_21 AC 126 ms
6,400 KB
testcase_22 AC 119 ms
6,528 KB
testcase_23 AC 121 ms
6,528 KB
testcase_24 AC 30 ms
6,528 KB
testcase_25 AC 27 ms
6,528 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 3 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ll n,k,p;
ll A[100010],B[100100],C[200200];

bool f(ll x){
  ll cnt=0;
  rep(i,n){
    cnt+=upper_bound(C,C+2*n,p-A[i]+x)-lower_bound(C,C+2*n,p-A[i]);
  }
  if(cnt>=k) return true;
  else return false;
}
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  cin>>n>>k>>p;
  rep(i,n) cin>>A[i];
  rep(i,n) cin>>B[i];
  sort(A,A+n);
  sort(B,B+n);
  rep(i,n){
    C[i]=B[i],C[i+n]=B[i]+p;
  }
  
  ll ng=-1,ok=p+1;
  while(ok-ng>1){
    ll mid=(ng+ok)/2;
    if(f(mid)) ok=mid;
    else ng=mid;
  }
  cout<<ok<<endl;
  
  return 0;
}
0