結果

問題 No.2812 Plus Minus Blackboard
ユーザー InTheBloomInTheBloom
提出日時 2024-07-19 22:24:00
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 999 bytes
コンパイル時間 1,077 ms
コンパイル使用メモリ 100,392 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-07-21 20:27:47
合計ジャッジ時間 4,347 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 187 ms
12,288 KB
testcase_04 AC 98 ms
8,528 KB
testcase_05 AC 170 ms
11,776 KB
testcase_06 AC 27 ms
6,944 KB
testcase_07 AC 21 ms
6,944 KB
testcase_08 AC 17 ms
6,940 KB
testcase_09 AC 141 ms
10,624 KB
testcase_10 AC 15 ms
6,940 KB
testcase_11 AC 88 ms
8,192 KB
testcase_12 AC 67 ms
7,192 KB
testcase_13 AC 180 ms
12,160 KB
testcase_14 AC 40 ms
6,940 KB
testcase_15 AC 14 ms
6,940 KB
testcase_16 AC 161 ms
11,392 KB
testcase_17 AC 43 ms
6,944 KB
testcase_18 AC 29 ms
6,944 KB
testcase_19 AC 121 ms
9,600 KB
testcase_20 AC 15 ms
6,940 KB
testcase_21 AC 181 ms
12,288 KB
testcase_22 AC 152 ms
11,264 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#ifdef LOCAL
#include "cpp-dump/dump.hpp"
#endif

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;

        (pit->second)--;
        (mit->second)--;

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

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

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

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