結果

問題 No.2812 Plus Minus Blackboard
ユーザー forest3forest3
提出日時 2024-07-25 11:34:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 928 bytes
コンパイル時間 1,859 ms
コンパイル使用メモリ 172,192 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-07-25 11:35:03
合計ジャッジ時間 6,458 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 0 ms
6,940 KB
testcase_03 AC 237 ms
11,776 KB
testcase_04 AC 97 ms
8,320 KB
testcase_05 AC 173 ms
11,392 KB
testcase_06 AC 26 ms
6,940 KB
testcase_07 AC 19 ms
6,944 KB
testcase_08 AC 15 ms
6,944 KB
testcase_09 AC 140 ms
10,368 KB
testcase_10 AC 14 ms
6,940 KB
testcase_11 AC 86 ms
7,808 KB
testcase_12 AC 65 ms
6,944 KB
testcase_13 AC 189 ms
11,776 KB
testcase_14 AC 39 ms
6,940 KB
testcase_15 AC 13 ms
6,940 KB
testcase_16 AC 159 ms
10,880 KB
testcase_17 AC 40 ms
6,940 KB
testcase_18 AC 24 ms
6,940 KB
testcase_19 AC 119 ms
9,344 KB
testcase_20 AC 14 ms
6,944 KB
testcase_21 AC 181 ms
11,776 KB
testcase_22 AC 154 ms
10,624 KB
testcase_23 WA -
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using ll = long long;
#define rep(i, n) for(int i = 0; i < n; i++)

int main() {
	int N;
	cin >> N;
	multiset<int> p, m;
	ll s = 0;
	rep(i, N) {
		int a;
		cin >> a;
		if(a < 0) m.insert(a);
		if(a > 0) p.insert(a);
		s += a;
	}
	string ans = "No";
	if(s < 0) {
		while(1) {
			if(p.size() + m.size() == 1) {
				ans = "Yes";
				break;
			}
			if(p.size() == 0) break;
			int pn = *prev(p.end());
			p.erase(prev(p.end()));
			int mn = *prev(m.end());
			m.erase(prev(m.end()));
			int sum = pn + mn;
			if(sum <= 0) m.insert(sum);
			else p.insert(sum);
		}
	}
	else {
		while(1) {
			if(p.size() + m.size() == 1) {
				ans = "Yes";
				break;
			}
			if(m.size() == 0) break;
			int pn = *p.begin();
			p.erase(p.begin());
			int mn = *m.begin();
			m.erase(m.begin());
			int sum = pn + mn;
			if(sum <= 0) m.insert(sum);
			else p.insert(sum);
		}
	}

	cout << ans << endl;
}
0