結果

問題 No.2812 Plus Minus Blackboard
ユーザー GOTKAKOGOTKAKO
提出日時 2024-07-19 21:32:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,012 bytes
コンパイル時間 2,258 ms
コンパイル使用メモリ 209,904 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-20 12:36:33
合計ジャッジ時間 4,257 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 111 ms
6,944 KB
testcase_04 AC 63 ms
6,944 KB
testcase_05 AC 105 ms
6,944 KB
testcase_06 AC 19 ms
6,940 KB
testcase_07 AC 14 ms
6,940 KB
testcase_08 AC 12 ms
6,940 KB
testcase_09 AC 91 ms
6,940 KB
testcase_10 AC 10 ms
6,940 KB
testcase_11 AC 37 ms
6,940 KB
testcase_12 AC 28 ms
6,940 KB
testcase_13 AC 110 ms
6,940 KB
testcase_14 AC 27 ms
6,944 KB
testcase_15 AC 7 ms
6,940 KB
testcase_16 AC 62 ms
6,940 KB
testcase_17 AC 27 ms
6,944 KB
testcase_18 AC 12 ms
6,944 KB
testcase_19 AC 48 ms
6,944 KB
testcase_20 AC 7 ms
6,944 KB
testcase_21 AC 69 ms
6,944 KB
testcase_22 AC 95 ms
6,940 KB
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

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

    int N; cin >> N;
    vector<int> A(N);
    for(auto &a : A) cin >> a;

    priority_queue<int,vector<int>,greater<>> P,M;
    for(auto &a : A){
        if(a < 0) M.push(a);
        else if(a > 0) P.push(a);
    }

    while(P.size() && M.size()){
        int m = M.top(); M.pop();
        int p = P.top(); P.pop();
        if(m+p > 0) P.push(m+p);
        if(m+p < 0) M.push(m+p);
    }
    if(P.size()+M.size() == 1){cout << "Yes" << endl; return 0;}

    while(P.size()) P.pop();
    while(M.size()) M.pop();

    for(auto &a : A){
        a *= -1;
        if(a < 0) M.push(a);
        else if(a > 0) P.push(a);
    }

    while(P.size() && M.size()){
        int m = M.top(); M.pop();
        int p = P.top(); P.pop();
        if(m+p > 0) P.push(m+p);
        if(m+p < 0) M.push(m+p);
    }
    if(P.size()+M.size() == 1){cout << "Yes" << endl; return 0;}
    cout << "No" << endl;

}
0