結果

問題 No.2501 Maximum Inversion Number
ユーザー baluteshihbaluteshih
提出日時 2023-10-13 21:46:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,568 bytes
コンパイル時間 2,811 ms
コンパイル使用メモリ 201,712 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-15 17:26:05
合計ジャッジ時間 3,993 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
#define X first
#define Y second
#define SZ(a) ((int)a.size())
#define ALL(v) v.begin(), v.end()
#define pb push_back

const ll MAXC = 2e9;
int L[200005], R[200005];

void solve() {
    int n, m;
    ll sumL = 0, sumR = 0;
    cin >> n >> m;
    for (int i = 1; i <= n; ++i)
        cin >> L[i], sumL += L[i];
    for (int i = 1; i <= n; ++i)
        cin >> R[i], sumR += R[i];
    if (sumL > m || sumR < m) {
        cout << "-1\n";
        return;
    }
    if (sumL < m) {
        auto cal = [&](ll mid) {
            ll tar = (mid + 1) / 2;
            ll res = 0;
            for (int i = 1; i <= n; ++i)
                res += max((ll)L[i], tar);
            return res;
        };

        ll l = 0, r = MAXC;
        while (r - l > 1) {
            ll mid = (l + r) >> 1;
            if (cal(mid) >= m) r = mid;
            else l = mid;
        }
        ll tar = (l + 1) / 2;
        sumL = 0;
        for (int i = 1; i <= n; ++i) {
            L[i] = max((ll)L[i], tar);
            sumL += L[i];
        }
        assert(sumL < m);
        for (int i = 1; i <= n && sumL < m; ++i) {
            if (L[i] == tar) {
                ++L[i];
                ++sumL;
            }
        }
    }
    ll ans = (ll)m * m;
    for (int i = 1; i <= n; ++i)
        ans -= (ll)L[i] * L[i];
    cout << ans / 2 << "\n";
}

int main() {
    ios::sync_with_stdio(0), cin.tie(0);
    int t;
    cin >> t;
    while (t--) {
        solve();
    }
}
0