結果

問題 No.1597 Matrix Sort
ユーザー chocoruskchocorusk
提出日時 2021-07-09 21:35:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 371 ms / 1,500 ms
コード長 1,224 bytes
コンパイル時間 3,396 ms
コンパイル使用メモリ 190,664 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-01 15:22:39
合計ジャッジ時間 10,448 ms
ジャッジサーバーID
(参考情報)
judge5 / 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 353 ms
5,376 KB
testcase_04 AC 371 ms
5,376 KB
testcase_05 AC 369 ms
5,376 KB
testcase_06 AC 357 ms
5,376 KB
testcase_07 AC 358 ms
5,376 KB
testcase_08 AC 311 ms
5,376 KB
testcase_09 AC 320 ms
5,376 KB
testcase_10 AC 204 ms
5,376 KB
testcase_11 AC 198 ms
5,376 KB
testcase_12 AC 166 ms
5,376 KB
testcase_13 AC 292 ms
5,376 KB
testcase_14 AC 326 ms
5,376 KB
testcase_15 AC 133 ms
5,376 KB
testcase_16 AC 196 ms
5,376 KB
testcase_17 AC 222 ms
5,376 KB
testcase_18 AC 351 ms
5,376 KB
testcase_19 AC 256 ms
5,376 KB
testcase_20 AC 215 ms
5,376 KB
testcase_21 AC 207 ms
5,376 KB
testcase_22 AC 211 ms
5,376 KB
testcase_23 AC 197 ms
5,376 KB
testcase_24 AC 43 ms
5,376 KB
testcase_25 AC 41 ms
5,376 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 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#include <list>
#include <atcoder/all>
#define popcount __builtin_popcount
using namespace std;
using namespace atcoder;
typedef long long ll;
typedef pair<int, int> P;

int main()
{
    int n; ll k;
    int p;
    cin>>n>>k>>p;
    int a[100010], b[100010];
    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 l=-1, r=p-1;
    while(r-l>1){
        int m=(l+r)/2;
        ll c=0;
        for(int i=0; i<n; i++){
            int t=lower_bound(b, b+n, m+1-a[i])-b;
            c+=t;
            int t2=lower_bound(b, b+n, p-a[i])-b;
            int t3=lower_bound(b, b+n, m+p+1-a[i])-b;
            c+=t3-t2;
        }
        if(c>=k) r=m;
        else l=m;
    }
    cout<<r<<endl;
    return 0;
}
0