結果

問題 No.2812 Plus Minus Blackboard
ユーザー shobonvipshobonvip
提出日時 2024-07-21 15:59:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,623 bytes
コンパイル時間 4,751 ms
コンパイル使用メモリ 264,816 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-21 20:28:40
合計ジャッジ時間 7,055 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 124 ms
6,940 KB
testcase_04 AC 70 ms
6,940 KB
testcase_05 AC 116 ms
6,940 KB
testcase_06 AC 22 ms
6,940 KB
testcase_07 AC 17 ms
6,940 KB
testcase_08 AC 14 ms
6,944 KB
testcase_09 AC 101 ms
6,944 KB
testcase_10 AC 12 ms
6,940 KB
testcase_11 AC 66 ms
6,944 KB
testcase_12 AC 51 ms
6,940 KB
testcase_13 AC 121 ms
6,940 KB
testcase_14 AC 31 ms
6,940 KB
testcase_15 AC 11 ms
6,940 KB
testcase_16 AC 110 ms
6,944 KB
testcase_17 AC 32 ms
6,944 KB
testcase_18 AC 22 ms
6,944 KB
testcase_19 AC 87 ms
6,944 KB
testcase_20 AC 12 ms
6,944 KB
testcase_21 AC 122 ms
6,944 KB
testcase_22 AC 108 ms
6,944 KB
testcase_23 AC 2 ms
6,944 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