結果

問題 No.2812 Plus Minus Blackboard
ユーザー maeshunmaeshun
提出日時 2024-07-20 08:10:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,435 bytes
コンパイル時間 4,712 ms
コンパイル使用メモリ 266,372 KB
実行使用メモリ 12,032 KB
最終ジャッジ日時 2024-07-20 08:10:38
合計ジャッジ時間 9,225 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 255 ms
12,032 KB
testcase_04 AC 124 ms
8,448 KB
testcase_05 WA -
testcase_06 AC 31 ms
5,376 KB
testcase_07 WA -
testcase_08 AC 19 ms
5,376 KB
testcase_09 WA -
testcase_10 AC 16 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 47 ms
5,760 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 15 ms
5,376 KB
testcase_21 WA -
testcase_22 AC 240 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
#define rep(i, n) for(int i=0;i<(n);++i)
#define rep1(i, n) for(int i=1;i<=(n);i++)
#define ll long long
using mint = modint998244353;
using P = pair<ll,ll>;
using lb = long double;
using T = tuple<ll, ll, ll>;
#ifdef LOCAL
#  include <debug_print.hpp>
#  define dbg(...) debug_print::multi_print(#__VA_ARGS__, __VA_ARGS__)
#else
#  define dbg(...) (static_cast<void>(0))
#endif

int main()
{
    int n;
    cin >> n;
    multiset<int> N, P;
    rep(i,n) {
        int a;
        cin >> a;
        if(a>0) P.insert(a);
        else N.insert(a);
    }
    while(n--) {
        if(P.size()+N.size()==1){
            cout<<"Yes"<<endl;
            return 0;
        }
        if(P.empty() || N.empty()) {
            cout<<"No"<<endl;
            return 0;
        }
        if(P.size()>N.size()) {
            int r = *N.begin();
            int s = *P.begin();
            N.erase(r);
            P.erase(s);
            if(r+s>0) {
                P.insert(r+s);
            }
            else{
                N.insert(r+s);
            }
        }
        else{
            int r = *N.rbegin();
            int s = *P.rbegin();
            N.erase(r);
            P.erase(s);
            if(r+s>0) {
                P.insert(r+s);
            }
            else{
                N.insert(r+s);
            }
        }
    }
    return 0;
}
0