結果

問題 No.2812 Plus Minus Blackboard
ユーザー anonymouslyanonymously
提出日時 2024-07-19 22:02:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 640 bytes
コンパイル時間 2,445 ms
コンパイル使用メモリ 209,492 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-21 20:27:29
合計ジャッジ時間 4,445 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 95 ms
6,940 KB
testcase_04 AC 55 ms
6,940 KB
testcase_05 AC 88 ms
6,940 KB
testcase_06 AC 18 ms
6,940 KB
testcase_07 AC 13 ms
6,940 KB
testcase_08 AC 12 ms
6,940 KB
testcase_09 AC 78 ms
6,940 KB
testcase_10 AC 10 ms
6,944 KB
testcase_11 AC 51 ms
6,944 KB
testcase_12 AC 39 ms
6,940 KB
testcase_13 AC 93 ms
6,944 KB
testcase_14 AC 25 ms
6,940 KB
testcase_15 AC 10 ms
6,940 KB
testcase_16 AC 83 ms
6,944 KB
testcase_17 AC 24 ms
6,940 KB
testcase_18 AC 17 ms
6,944 KB
testcase_19 AC 66 ms
6,940 KB
testcase_20 AC 9 ms
6,940 KB
testcase_21 AC 93 ms
6,944 KB
testcase_22 AC 83 ms
6,944 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
	int n;
	cin >> n;
	vector<int> pos;
	vector<int> neg;
	for (int i = 0; i < n; i++) {
		int a;
		cin >> a;
		if (a > 0)
			pos.push_back(a);
		if (a < 0)
			neg.push_back(a);
	}
	sort(neg.begin(), neg.end());
	sort(pos.rbegin(), pos.rend());
	while (pos.size() && neg.size()) {
		int s = pos.back() + neg.back();
		if (s > 0) {
			pos[pos.size() - 1] = s;
			neg.pop_back();
		} else if (s < 0) {
			neg[neg.size() - 1] = s;
			pos.pop_back();
		} else {
			pos.pop_back();
			neg.pop_back();
		}
	}
	cout << (max(pos.size(), neg.size()) > 1 ? "No" : "Yes") << endl;
	return 0;
}
0