結果
問題 | No.1597 Matrix Sort |
ユーザー | totori_nyaa |
提出日時 | 2021-07-09 21:58:42 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 915 bytes |
コンパイル時間 | 1,589 ms |
コンパイル使用メモリ | 169,940 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-01 16:18:47 |
合計ジャッジ時間 | 7,316 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 8 WA * 19 |
ソースコード
#include<bits/stdc++.h> using namespace std; typedef long long ll; #define all(x) (x).begin(),(x).end() template<typename T1,typename T2> bool chmin(T1 &a,T2 b){if(a<=b)return 0; a=b; return 1;} template<typename T1,typename T2> bool chmax(T1 &a,T2 b){if(a>=b)return 0; a=b; return 1;} int dx[4]={0,1,0,-1}, dy[4]={1,0,-1,0}; long double eps = 1e-9; long double pi = acos(-1); signed main(){ ios::sync_with_stdio(false); cin.tie(0); cout << fixed << setprecision(20); int n,k,mod; cin>>n>>k>>mod; 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,a+n); sort(b,b+n); int low = -1, up = 1e9+7, mid=-1; while(up-low>1){ mid = (low + up) / 2; ll cnt = 0; for(int i=0;i<n;i++){ cnt += upper_bound(b,b+n,mid-a[i]) - b; cnt += upper_bound(b,b+n,mid-a[i]+mod) - lower_bound(b,b+n,mod-a[i]); } if(cnt < k)low = mid; else up = mid; } cout << up << endl; }