結果
問題 | No.1597 Matrix Sort |
ユーザー | monnu |
提出日時 | 2021-07-09 22:28:03 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 353 ms / 1,500 ms |
コード長 | 1,450 bytes |
コンパイル時間 | 2,201 ms |
コンパイル使用メモリ | 172,548 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-01 17:05:23 |
合計ジャッジ時間 | 7,985 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 27 |
ソースコード
#include <bits/stdc++.h> using namespace std; //#include <atcoder/all> //using namespace atcoder; using ll=long long; using Graph=vector<vector<int>>; #define MAX 1000000 #define MOD 1000000007 //#define INF 1000000000 #define INF 1000000000000000000 int main(){ int N,P; 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()); { int x=0; ll cnt=0; for(int i=0;i<N;i++){ int k; k=upper_bound(B.begin(),B.end(),x-A[i])-B.begin(); cnt+=(ll)k; //cout<<cnt<<" "; k=upper_bound(B.begin(),B.end(),x+P-A[i])-B.begin(); cnt+=(ll)k; //cout<<k<<" "; //cout<<cnt<<" "; k=upper_bound(B.begin(),B.end(),P-1-A[i])-B.begin(); cnt-=(ll)k; //cout<<P-1-A[i]<<endl; //cout<<cnt<<endl; } if(cnt>=K){ cout<<0<<endl; return 0; } } int left=0; int right=P; while(left+1<right){ int x=(left+right)/2; ll cnt=0; for(int i=0;i<N;i++){ int k; if(A[i]+B[0]<=x){ k=upper_bound(B.begin(),B.end(),x-A[i])-B.begin(); cnt+=(ll)k; } k=upper_bound(B.begin(),B.end(),x+P-A[i])-B.begin(); cnt+=(ll)k; k=upper_bound(B.begin(),B.end(),P-1-A[i])-B.begin(); cnt-=(ll)k; } if(cnt>=K){ right=x; }else{ left=x; } } cout<<right<<endl; }