結果

問題 No.2812 Plus Minus Blackboard
ユーザー nu50218nu50218
提出日時 2024-07-19 21:38:47
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,494 bytes
コンパイル時間 4,481 ms
コンパイル使用メモリ 271,704 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-19 21:38:54
合計ジャッジ時間 5,731 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 AC 23 ms
5,376 KB
testcase_05 AC 36 ms
5,376 KB
testcase_06 WA -
testcase_07 AC 6 ms
5,376 KB
testcase_08 AC 6 ms
5,376 KB
testcase_09 AC 32 ms
5,376 KB
testcase_10 WA -
testcase_11 AC 21 ms
5,376 KB
testcase_12 AC 17 ms
5,376 KB
testcase_13 AC 38 ms
5,376 KB
testcase_14 AC 11 ms
5,376 KB
testcase_15 AC 5 ms
5,376 KB
testcase_16 AC 35 ms
5,376 KB
testcase_17 WA -
testcase_18 AC 8 ms
5,376 KB
testcase_19 AC 27 ms
5,376 KB
testcase_20 AC 5 ms
5,376 KB
testcase_21 AC 37 ms
5,376 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifdef LOCAL
#include <local.hpp>
#else
#pragma GCC optimize("O3,unroll-loops")
#pragma GCC target("avx2,popcnt,lzcnt,abm,bmi,bmi2")
#include <bits/stdc++.h>
#define debug(...) ((void)0)
#define postprocess(...) ((void)0)
#endif

using namespace std;
using ll = long long;
using ld = long double;

void solve([[maybe_unused]] int test) {
    int N;
    cin >> N;

    vector<ll> positive, negative;
    for (int i = 0; i < N; i++) {
        ll x;
        cin >> x;
        if (x > 0) positive.push_back(x);
        if (x < 0) negative.push_back(x);
    }

    sort(positive.begin(), positive.end());
    sort(negative.begin(), negative.end());

    if (positive.size() + negative.size() <= 1) {
        cout << "Yes" << endl;
        return;
    }
    if (positive.empty()) {
        cout << "No" << endl;
        return;
    }
    if (negative.empty()) {
        cout << "No" << endl;
        return;
    }

    auto sum_positive = accumulate(positive.begin(), positive.end(), 0LL);
    auto sum_negative = accumulate(negative.begin(), negative.end(), 0LL);

    if (sum_positive - positive.back() <= sum_negative) {
        cout << "Yes" << endl;
        return;
    }
    if (sum_negative - negative.back() <= sum_positive) {
        cout << "Yes" << endl;
        return;
    }

    cout << "No" << endl;
}

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

    int t = 1;
    // cin >> t;
    for (int i = 1; i <= t; i++) {
        solve(i);
    }

    postprocess();
}
0