結果

問題 No.1597 Matrix Sort
ユーザー yamakeyamake
提出日時 2021-07-09 22:46:29
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 227 ms / 1,500 ms
コード長 1,159 bytes
コンパイル時間 1,695 ms
コンパイル使用メモリ 173,708 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-07-01 17:57:58
合計ジャッジ時間 6,459 ms
ジャッジサーバーID
(参考情報)
judge1 / 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 162 ms
7,168 KB
testcase_04 AC 201 ms
7,168 KB
testcase_05 AC 224 ms
7,296 KB
testcase_06 AC 220 ms
7,168 KB
testcase_07 AC 227 ms
7,296 KB
testcase_08 AC 219 ms
7,296 KB
testcase_09 AC 220 ms
7,168 KB
testcase_10 AC 112 ms
7,296 KB
testcase_11 AC 120 ms
7,168 KB
testcase_12 AC 118 ms
7,168 KB
testcase_13 AC 200 ms
7,168 KB
testcase_14 AC 213 ms
7,168 KB
testcase_15 AC 88 ms
7,168 KB
testcase_16 AC 126 ms
7,296 KB
testcase_17 AC 143 ms
7,168 KB
testcase_18 AC 201 ms
7,168 KB
testcase_19 AC 163 ms
7,296 KB
testcase_20 AC 135 ms
7,296 KB
testcase_21 AC 128 ms
7,168 KB
testcase_22 AC 124 ms
7,168 KB
testcase_23 AC 118 ms
7,168 KB
testcase_24 AC 43 ms
7,168 KB
testcase_25 AC 39 ms
7,296 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 3 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<n;++i)
#define rep1(i,n) for(int i=1;i<=n;++i)
#define debug(output) if(debugFlag)cout<<#output<<"= "<<output<<endl
using lint = long long;
typedef pair<int,int> P;
const bool debugFlag=true;
const lint linf=1e18+7;
const lint inf=1e9+7;
const int MOD=1000000007;
signed main(){
  lint n,k,p;cin>>n>>k>>p;
  vector<lint> a(n);
  rep(i,n)cin>>a[i];
  sort(a.begin(),a.end());
  vector<lint> b(n);
  rep(i,n)cin>>b[i];
  sort(b.begin(),b.end());
  vector<lint> c(n*2);
  rep(i,n)c[i]=b[i]-p;
  rep(i,n)c[i+n]=b[i];
  vector<int> l(n),r(n);
  rep(i,n){
      auto it=lower_bound(c.begin(),c.end(),-a[i]);
      int ind=it-c.begin();
      l[i]=ind;r[i]=ind+n;
  }
  auto judge=[&](lint x){
      lint cnt=0;
      rep(i,n){
          auto it=lower_bound(c.begin()+l[i],c.end(),x-a[i]);
          int buf=it-c.begin();
          buf-=l[i];
          if(buf<0)buf=0;
          if(buf>n)buf=n;
          cnt+=buf;
      }
      return cnt<k;
  };
  lint d=0;lint u=p;
  while(u-d>1){
      lint mid=(u+d)/2;
      if(judge(mid))d=mid;
      else u=mid;
  }
  cout<<d<<"\n";
  return 0;
}
0