結果

問題 No.1597 Matrix Sort
ユーザー snow39snow39
提出日時 2021-07-09 22:14:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 323 ms / 1,500 ms
コード長 1,773 bytes
コンパイル時間 1,407 ms
コンパイル使用メモリ 119,556 KB
実行使用メモリ 394,700 KB
最終ジャッジ日時 2024-07-01 16:48:35
合計ジャッジ時間 8,134 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 271 ms
394,568 KB
testcase_04 AC 321 ms
394,700 KB
testcase_05 AC 320 ms
394,484 KB
testcase_06 AC 315 ms
394,644 KB
testcase_07 AC 322 ms
394,592 KB
testcase_08 AC 308 ms
394,492 KB
testcase_09 AC 308 ms
394,660 KB
testcase_10 AC 243 ms
394,492 KB
testcase_11 AC 248 ms
394,504 KB
testcase_12 AC 26 ms
6,940 KB
testcase_13 AC 68 ms
43,120 KB
testcase_14 AC 323 ms
394,628 KB
testcase_15 AC 24 ms
6,940 KB
testcase_16 AC 52 ms
43,100 KB
testcase_17 AC 267 ms
394,636 KB
testcase_18 AC 288 ms
394,592 KB
testcase_19 AC 272 ms
394,528 KB
testcase_20 AC 278 ms
394,568 KB
testcase_21 AC 257 ms
394,584 KB
testcase_22 AC 253 ms
394,528 KB
testcase_23 AC 251 ms
394,524 KB
testcase_24 AC 17 ms
6,940 KB
testcase_25 AC 15 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 229 ms
393,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cmath>
#include <iomanip>
#include <iostream>
#include <map>
#include <queue>
#include <set>
#include <string>
#include <tuple>
#include <vector>

#define mkp make_pair
#define mkt make_tuple
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define all(v) v.begin(), v.end()
using namespace std;
typedef long long ll;
const ll MOD = 1e9 + 7;
// const ll MOD = 998244353;
template <class T>
void chmin(T &a, const T &b) {
    if (a > b) a = b;
}
template <class T>
void chmax(T &a, const T &b) {
    if (a < b) a = b;
}

void solve() {
    int N;
    ll K;
    int P;
    cin >> N >> K >> P;
    vector<vector<int>> A(2, vector<int>(N));
    rep(k, 2) rep(i, N) cin >> A[k][i];

    vector<vector<ll>> num(2, vector<ll>(P, 0));
    rep(k, 2) rep(i, N) num[k][A[k][i]]++;
    vector<vector<ll>> sum(2, vector<ll>(P + 1, 0));
    rep(k, 2) {
        rep(i, P) sum[k][i + 1] = sum[k][i] + num[k][i];
    }

    vector<int> v = A[0];
    sort(all(v));
    v.erase(unique(all(v)), v.end());

    auto judge = [&](int lim) -> bool {
        ll res = 0;
        for (auto k : v) {
            ll tmp = 0;
            if (k <= lim) {
                tmp += sum[1][lim - k + 1];
                tmp += sum[1][P] - sum[1][P - k];
            } else {
                tmp += sum[1][min(P, P - k + lim + 1)] - sum[1][P - k];
            }
            res += num[0][k] * tmp;
            if (res >= K) return true;
        }
        return false;
    };

    int ok = P, ng = -1;
    while (abs(ok - ng) > 1) {
        int mid = (ok + ng) / 2;
        if (judge(mid))
            ok = mid;
        else
            ng = mid;
    }

    cout << ok << endl;
}

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    solve();

    return 0;
}
0