結果

問題 No.2501 Maximum Inversion Number
ユーザー suisensuisen
提出日時 2023-07-12 19:09:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,366 bytes
コンパイル時間 931 ms
コンパイル使用メモリ 91,380 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-10-01 18:43:06
合計ジャッジ時間 8,808 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,794 ms
10,496 KB
testcase_01 AC 58 ms
5,248 KB
testcase_02 TLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cassert>
#include <iostream>
#include <numeric>
#include <vector>
#include <map>

int64_t solve(const size_t, const uint64_t m, const std::vector<uint64_t>& l, const std::vector<uint64_t>& r) {
    const uint64_t sum_l = std::accumulate(l.begin(), l.end(), uint64_t(0));
    const uint64_t sum_r = std::accumulate(r.begin(), r.end(), uint64_t(0));

    if (m < sum_l or m > sum_r) {
        return -1;
    }

    std::map<int64_t, size_t> inout;
    for (uint64_t e : l) ++inout[e];
    for (uint64_t e : r) --inout[e];

    uint64_t x = 0;
    for (uint64_t e : l) x += e * e;

    uint64_t sum = sum_l;
    size_t num = 0;
    for (uint64_t t0 = 0; ; ++t0) {
        if (auto it = inout.find(t0); it != inout.end()) {
            num += it->second;
        }
        uint64_t d = std::min(m - sum, num);
        x += (2 * t0 + 1) * d;
        sum += d;
        if (sum == m) {
            return (m * m - x) / 2;
        }
    }
}

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

    size_t t;
    std::cin >> t;
    
    while (t --> 0) {
        size_t n;
        uint64_t m;
        std::cin >> n >> m;

        std::vector<uint64_t> l(n), r(n);
        for (auto& e : l) std::cin >> e;
        for (auto& e : r) std::cin >> e;

        std::cout << solve(n, m, l, r) << '\n';
    }

    return 0;
}
0