結果

問題 No.2812 Plus Minus Blackboard
ユーザー tnakao0123tnakao0123
提出日時 2024-07-22 17:27:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 868 bytes
コンパイル時間 603 ms
コンパイル使用メモリ 54,356 KB
実行使用メモリ 12,160 KB
最終ジャッジ日時 2024-07-22 17:28:08
合計ジャッジ時間 2,569 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 104 ms
12,160 KB
testcase_04 AC 54 ms
8,320 KB
testcase_05 AC 92 ms
11,648 KB
testcase_06 AC 14 ms
5,376 KB
testcase_07 AC 11 ms
5,376 KB
testcase_08 AC 9 ms
5,376 KB
testcase_09 AC 98 ms
10,496 KB
testcase_10 AC 8 ms
5,376 KB
testcase_11 AC 49 ms
7,936 KB
testcase_12 AC 35 ms
6,912 KB
testcase_13 AC 102 ms
12,160 KB
testcase_14 AC 23 ms
5,376 KB
testcase_15 AC 8 ms
5,376 KB
testcase_16 AC 90 ms
11,264 KB
testcase_17 AC 22 ms
5,632 KB
testcase_18 AC 14 ms
5,376 KB
testcase_19 AC 67 ms
9,472 KB
testcase_20 AC 8 ms
5,376 KB
testcase_21 AC 101 ms
12,032 KB
testcase_22 AC 86 ms
10,880 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2812.cc:  No.2812 Plus Minus Blackboard - yukicoder
 */

#include<cstdio>
#include<set>
#include<algorithm>

using namespace std;

/* constant */

const int MAX_N = 200000;

/* typedef */

using ll = long long;
using msl = multiset<ll>;

/* global variables */

int as[MAX_N];

/* subroutines */

/* main */

int main() {
  int n;
  scanf("%d", &n);
  for (int i = 0; i < n; i++) scanf("%d", as + i);

  msl pv, mv;
  for (int i = 0; i < n; i++) {
    if (as[i] > 0) pv.insert(as[i]);
    else if (as[i] < 0) mv.insert(-as[i]);
  }

  while (! pv.empty() && ! mv.empty()) {
    ll u = *pv.begin(); pv.erase(pv.begin());
    ll v = *mv.begin(); mv.erase(mv.begin());
    ll d = u - v;

    if (d > 0) pv.insert(d);
    else if (d < 0) mv.insert(-d);
  }

  if (pv.size() + mv.size() <= 1) puts("Yes");
  else puts("No");
  
  return 0;
}
0