結果

問題 No.1823 Tricolor Dango
ユーザー NalimeNalime
提出日時 2022-03-04 19:45:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,002 bytes
コンパイル時間 2,070 ms
コンパイル使用メモリ 206,944 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-18 16:55:50
合計ジャッジ時間 4,121 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 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 12 ms
5,376 KB
testcase_08 AC 11 ms
5,376 KB
testcase_09 AC 13 ms
5,376 KB
testcase_10 AC 11 ms
5,376 KB
testcase_11 AC 11 ms
5,376 KB
testcase_12 AC 9 ms
5,376 KB
testcase_13 AC 11 ms
5,376 KB
testcase_14 AC 11 ms
5,376 KB
testcase_15 AC 10 ms
5,376 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 8 ms
5,376 KB
testcase_18 AC 17 ms
5,376 KB
testcase_19 AC 41 ms
5,376 KB
testcase_20 AC 16 ms
5,376 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define SZ(a)   int(size(a))
#define ALL(a)  begin(a), end(a)
#define RALL(a) rbegin(a), rend(a)

using ll = long long;
using i128 = __int128_t;
using ld = long double;
using pii = pair<int, int>;

bool solve() {
    int n;
    cin >> n;
    vector<ll> a(n);
    for (auto &x : a) cin >> x;

    ll sum = accumulate(ALL(a), 0LL);
    if (sum % 3) return false;

    sort(RALL(a));

    auto f = [&](ll d) {
        ll cnt = 0;
        for (int i = 2; i < n; i++) {
            cnt += max(a[i] - (a[1] - d - 1), 0LL);
        }
        return cnt >= d;
    };

    ll l = -1, r = a[1];
    while (l + 1 < r) {
        ll m = (l + r) / 2;
        if (f(m)) l = m;
        else r = m;
    }
    if (l == 0) return false;

    return 2 * (a[0] - l) <= sum - 3 * l;
}

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

    int tcs = 1;
    cin >> tcs;
    for (int tc = 1; tc <= tcs; tc++) {
        cout << (solve() ? "Yes" : "No") << '\n';
    }
}
0