結果

問題 No.2812 Plus Minus Blackboard
ユーザー shobonvipshobonvip
提出日時 2024-07-21 15:52:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,624 bytes
コンパイル時間 4,228 ms
コンパイル使用メモリ 265,100 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-21 20:28:45
合計ジャッジ時間 6,480 ms
ジャッジサーバーID
(参考情報)
judge3 / 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 121 ms
6,476 KB
testcase_04 AC 70 ms
5,376 KB
testcase_05 AC 116 ms
6,520 KB
testcase_06 AC 21 ms
5,376 KB
testcase_07 AC 16 ms
5,376 KB
testcase_08 AC 14 ms
5,376 KB
testcase_09 AC 98 ms
6,224 KB
testcase_10 AC 12 ms
5,376 KB
testcase_11 AC 64 ms
5,376 KB
testcase_12 AC 51 ms
5,376 KB
testcase_13 AC 122 ms
6,416 KB
testcase_14 AC 31 ms
5,376 KB
testcase_15 AC 11 ms
5,376 KB
testcase_16 AC 109 ms
6,192 KB
testcase_17 AC 31 ms
5,376 KB
testcase_18 AC 21 ms
5,376 KB
testcase_19 AC 85 ms
5,640 KB
testcase_20 AC 12 ms
5,376 KB
testcase_21 AC 119 ms
6,328 KB
testcase_22 AC 105 ms
6,176 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

//* ATCODER
#include<atcoder/all>
using namespace atcoder;
typedef modint998244353 mint;
//*/

/* BOOST MULTIPRECISION
#include<boost/multiprecision/cpp_int.hpp>
using namespace boost::multiprecision;
//*/

typedef long long ll;

#define rep(i, s, n) for (int i = (int)(s); i < (int)(n); i++)
#define rrep(i, s, n) for (int i = (int)(n)-1; i >= (int)(s); i--)

template <typename T> bool chmin(T &a, const T &b) {
	if (a <= b) return false;
	a = b;
	return true;
}

template <typename T> bool chmax(T &a, const T &b) {
	if (a >= b) return false;
	a = b;
	return true;
}

template <typename T> T max(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmax(ret, a[i]);
	return ret;
}

template <typename T> T min(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmin(ret, a[i]);
	return ret;
}

template <typename T> T sum(vector<T> &a){
	T ret = 0;
	for (int i=0; i<(int)a.size(); i++) ret += a[i];
	return ret;
}

int main(){
	int n; cin >> n;
	vector<ll> a(n);
	rep(i,0,n){
		cin >> a[i];
	}
	priority_queue<ll,vector<ll>,greater<ll>> plus;
	priority_queue<ll,vector<ll>,greater<ll>> minus;
	rep(i,0,n){
		if (a[i] >= 0){
			plus.push(a[i]);
		}else{
			minus.push(-a[i]);
		}
	}
	while(!plus.empty() && !minus.empty()){
		ll x = plus.top();
		ll y = minus.top();
		plus.pop();
		minus.pop();
		if (x == y){
			continue;
		}else if(x > y){
			plus.push(x - y);
		}else{
			minus.push(y - x);
		}
	}
	if ((int)plus.size() + (int)minus.size() <= 1){
		cout << "Yes\n";
	}else{
		cout << "No\n";
	}
}

0