結果

問題 No.1597 Matrix Sort
ユーザー snow39snow39
提出日時 2021-07-09 22:14:11
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 285 ms / 1,500 ms
コード長 1,773 bytes
コンパイル時間 1,176 ms
コンパイル使用メモリ 117,700 KB
実行使用メモリ 394,668 KB
最終ジャッジ日時 2023-09-14 09:27:12
合計ジャッジ時間 7,549 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 248 ms
394,668 KB
testcase_04 AC 284 ms
394,416 KB
testcase_05 AC 282 ms
394,552 KB
testcase_06 AC 285 ms
394,600 KB
testcase_07 AC 281 ms
394,484 KB
testcase_08 AC 273 ms
394,352 KB
testcase_09 AC 270 ms
394,516 KB
testcase_10 AC 224 ms
394,484 KB
testcase_11 AC 226 ms
394,596 KB
testcase_12 AC 25 ms
4,740 KB
testcase_13 AC 66 ms
42,752 KB
testcase_14 AC 281 ms
394,436 KB
testcase_15 AC 22 ms
4,692 KB
testcase_16 AC 50 ms
43,024 KB
testcase_17 AC 237 ms
394,508 KB
testcase_18 AC 256 ms
394,432 KB
testcase_19 AC 242 ms
394,508 KB
testcase_20 AC 232 ms
394,368 KB
testcase_21 AC 226 ms
394,532 KB
testcase_22 AC 225 ms
394,508 KB
testcase_23 AC 224 ms
394,628 KB
testcase_24 AC 16 ms
4,380 KB
testcase_25 AC 14 ms
4,432 KB
testcase_26 AC 1 ms
4,376 KB
testcase_27 AC 2 ms
4,380 KB
testcase_28 AC 2 ms
4,380 KB
testcase_29 AC 201 ms
393,704 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