結果
問題 | No.1597 Matrix Sort |
ユーザー | A0ikun_1818 |
提出日時 | 2021-07-13 14:53:19 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 361 ms / 1,500 ms |
コード長 | 2,455 bytes |
コンパイル時間 | 1,078 ms |
コンパイル使用メモリ | 100,700 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-02 13:29:18 |
合計ジャッジ時間 | 8,523 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 329 ms
6,940 KB |
testcase_04 | AC | 352 ms
6,940 KB |
testcase_05 | AC | 353 ms
6,944 KB |
testcase_06 | AC | 347 ms
6,940 KB |
testcase_07 | AC | 361 ms
6,940 KB |
testcase_08 | AC | 298 ms
6,944 KB |
testcase_09 | AC | 306 ms
6,940 KB |
testcase_10 | AC | 227 ms
6,944 KB |
testcase_11 | AC | 200 ms
6,940 KB |
testcase_12 | AC | 168 ms
6,940 KB |
testcase_13 | AC | 279 ms
6,940 KB |
testcase_14 | AC | 318 ms
6,944 KB |
testcase_15 | AC | 138 ms
6,940 KB |
testcase_16 | AC | 209 ms
6,940 KB |
testcase_17 | AC | 239 ms
6,944 KB |
testcase_18 | AC | 344 ms
6,940 KB |
testcase_19 | AC | 261 ms
6,940 KB |
testcase_20 | AC | 232 ms
6,944 KB |
testcase_21 | AC | 230 ms
6,940 KB |
testcase_22 | AC | 227 ms
6,940 KB |
testcase_23 | AC | 217 ms
6,940 KB |
testcase_24 | AC | 41 ms
6,940 KB |
testcase_25 | AC | 38 ms
6,940 KB |
testcase_26 | AC | 2 ms
6,940 KB |
testcase_27 | AC | 1 ms
6,944 KB |
testcase_28 | AC | 1 ms
6,940 KB |
testcase_29 | AC | 2 ms
6,944 KB |
ソースコード
#include <iostream> #include <string> using namespace std; #include <algorithm> #include <vector> #include <cstdio> #include <cstdlib> #include <cmath> #include <cstring> #include <iomanip> #include <set> #include <map> #include <queue> #include <cassert> using ll = long long; using ld = long double; const ll MOD1 = 1000000007; const ll MOD2 = 998244353; const ll LIMIT1 = 200010; const ll LIMIT2 = 500010; const ll LIMIT3 = 1000010; const int INF = ((1<<30)-1); const ll LLINF = (1LL<<60); const ld EPS = (1e-14); using cv = const void; using P = pair<ll,ll>; #define rep(i,n) for((i)=0;(i)<(n);(i)++) #define per(i,n) for((i)=(n)-1;(i)>=0;(i)--) #define ALL(a) (a).begin(),(a).end() #define ALL2(a, n) (a),(a)+(n) template<class T,class C> T max(T a,C b){ return std::max(a, (T)b); } template<class T,class C> T min(T a,C b){ return std::min(a, (T)b); } template<class T,class C> bool chmax(T &a,const C b){ if(a<(T)b){ a=(T)b;return true; } return false; } template<class T,class C> bool chmin(T &a,const C b){ if((T)b<a){ a=(T)b;return true; } return false; } #define zt(a,b) (max((a),(b))-min((a),(b))) #define setpre(n) fixed << setprecision(n) ll gcd(ll a,ll b){return b?gcd(b,a%b):a;} ll lcm(ll a,ll b){return (a/gcd(a,b))*b;} #define YES(b) (b?"YES":"NO") #define Yes(b) (b?"Yes":"No") #define yes(b) (b?"yes":"no") template<class T,class C> char gl(const T a,const C b){ T bb = (T)b; if(a<bb) return '<'; else if(a>bb) return '>'; else return '='; } int dx[8]={1,0,-1,0,1,-1,-1,1},dy[8]={0,1,0,-1,1,1,-1,-1}; ll modpow(ll a, ll n, ll mod) { ll res = 1; while (n > 0) { if (n & 1){ res *= a; if(mod>=1) res %= mod; } a *= a; if(mod>=1) a %= mod; n >>= 1; } return res; } void initialize(){ } int main(void){ initialize(); ll n,m,i,j,k,result=0; string s; ll p; cin >> n >> k >> p; k = n*n+1-k;//k番目に大きいに置き換え vector<ll> a(n), b(n); rep(i,n) cin >> a[i]; rep(i,n) cin >> b[i]; sort(ALL(a)); sort(ALL(b)); ll ok=0, ng=p; while(llabs(ok-ng)>1){//規定値以上がk個以上あるか ll mid = (ok+ng)/2; ll tmp = 0; for(i=0;i<n;i++){ ll tmp2=0; for(j=0;j<=1;j++){ tmp2 += distance(lower_bound(ALL(b), mid-a[i]+j*p), lower_bound(ALL(b), (j+1)*p-a[i])); } if(tmp2>=1) tmp += tmp2; } if(tmp>=k){ ok = mid; }else{ ng = mid; } } result = ok; cout << result << endl; return 0; }