結果

問題 No.2812 Plus Minus Blackboard
ユーザー forest3forest3
提出日時 2024-07-25 11:42:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 228 ms / 2,000 ms
コード長 976 bytes
コンパイル時間 1,954 ms
コンパイル使用メモリ 171,976 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-07-25 11:42:53
合計ジャッジ時間 5,115 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 228 ms
11,776 KB
testcase_04 AC 99 ms
8,320 KB
testcase_05 AC 188 ms
11,520 KB
testcase_06 AC 27 ms
6,940 KB
testcase_07 AC 20 ms
6,940 KB
testcase_08 AC 16 ms
6,940 KB
testcase_09 AC 147 ms
10,368 KB
testcase_10 AC 15 ms
6,940 KB
testcase_11 AC 89 ms
7,936 KB
testcase_12 AC 73 ms
6,944 KB
testcase_13 AC 183 ms
11,776 KB
testcase_14 AC 38 ms
6,944 KB
testcase_15 AC 12 ms
6,940 KB
testcase_16 AC 170 ms
10,880 KB
testcase_17 AC 40 ms
6,944 KB
testcase_18 AC 25 ms
6,944 KB
testcase_19 AC 121 ms
9,344 KB
testcase_20 AC 13 ms
6,940 KB
testcase_21 AC 182 ms
11,776 KB
testcase_22 AC 150 ms
10,624 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

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(m.size() + p.size() <= 1) ans = "Yes";
	else 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