結果

問題 No.2812 Plus Minus Blackboard
ユーザー InTheBloomInTheBloom
提出日時 2024-07-19 22:08:35
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 945 bytes
コンパイル時間 2,010 ms
コンパイル使用メモリ 99,140 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-07-19 22:08:52
合計ジャッジ時間 5,075 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 AC 211 ms
12,288 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 29 ms
5,376 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 15 ms
5,376 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 42 ms
5,760 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 164 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <map>

using namespace std;
using ll = long long;

constexpr int iINF = 1'000'000'000;
constexpr ll llINF = 1'000'000'000'000'000'000;

int main () {
    int N; cin >> N;
    vector<int> A(N);
    for (int i = 0; i < N; i++) cin >> A[i];

    map<int, int> minus, plus;

    for (int i = 0; i < N; i++) {
        if (0 < A[i]) plus[A[i]]++;
        if (A[i] < 0) minus[A[i]]++;
    }

    while (0 < plus.size() && 0 < minus.size()) {
        auto pit = plus.begin();
        auto mit = minus.rbegin();
        int ne = pit->first + mit->first;

        if (0 < ne) plus[ne]++;
        if (ne < 0) minus[ne]++;

        pit->second--;
        mit->second--;

        if (pit->second == 0) plus.erase(pit->first);
        if (mit->second == 0) minus.erase(mit->first);
    }

    string ans = "No";
    if (plus.size() + minus.size() <= 1) ans = "Yes";

    cout << ans << "\n";
}
0