結果

問題 No.2812 Plus Minus Blackboard
ユーザー kotatsugamekotatsugame
提出日時 2024-07-22 23:23:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 787 bytes
コンパイル時間 1,162 ms
コンパイル使用メモリ 92,248 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-22 23:23:08
合計ジャッジ時間 2,857 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 43 ms
5,376 KB
testcase_04 AC 26 ms
5,376 KB
testcase_05 AC 40 ms
5,376 KB
testcase_06 AC 9 ms
5,376 KB
testcase_07 AC 7 ms
5,376 KB
testcase_08 AC 6 ms
5,376 KB
testcase_09 AC 35 ms
5,376 KB
testcase_10 AC 5 ms
5,376 KB
testcase_11 AC 24 ms
5,376 KB
testcase_12 AC 18 ms
5,376 KB
testcase_13 AC 42 ms
5,376 KB
testcase_14 AC 12 ms
5,376 KB
testcase_15 AC 5 ms
5,376 KB
testcase_16 AC 39 ms
5,376 KB
testcase_17 AC 12 ms
5,376 KB
testcase_18 AC 8 ms
5,376 KB
testcase_19 AC 31 ms
5,376 KB
testcase_20 AC 5 ms
5,376 KB
testcase_21 AC 43 ms
5,376 KB
testcase_22 AC 38 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<random>
#include<vector>
#include<algorithm>
#include<cassert>
using namespace std;
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int N;cin>>N;
	vector<int>pos,neg;
	for(int i=0;i<N;i++)
	{
		int a;cin>>a;
		if(a>0)pos.push_back(a);
		else if(a<0)neg.push_back(-a);
	}
	mt19937 rng;
	sort(pos.begin(),pos.end());
	reverse(pos.begin(),pos.end());
	if(pos.size()>=2)shuffle(pos.begin()+1,pos.end(),rng);
	sort(neg.begin(),neg.end());
	reverse(neg.begin(),neg.end());
	if(neg.size()>=2)shuffle(neg.begin()+1,neg.end(),rng);
	while(!pos.empty()&&!neg.empty())
	{
		int t=pos.back()-neg.back();
		pos.pop_back();
		neg.pop_back();
		if(t>0)pos.push_back(t);
		else if(t<0)neg.push_back(-t);
	}
	cout<<(pos.size()+neg.size()>1?"No":"Yes")<<endl;
}
0