結果

問題 No.2812 Plus Minus Blackboard
ユーザー risujirohrisujiroh
提出日時 2024-07-19 21:40:59
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 716 bytes
コンパイル時間 3,104 ms
コンパイル使用メモリ 249,728 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-20 12:37:09
合計ジャッジ時間 4,574 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 69 ms
5,376 KB
testcase_04 AC 40 ms
5,376 KB
testcase_05 AC 65 ms
5,376 KB
testcase_06 AC 12 ms
5,376 KB
testcase_07 AC 10 ms
5,376 KB
testcase_08 AC 8 ms
5,376 KB
testcase_09 AC 57 ms
5,376 KB
testcase_10 AC 7 ms
5,376 KB
testcase_11 AC 36 ms
5,376 KB
testcase_12 AC 28 ms
5,376 KB
testcase_13 AC 68 ms
5,376 KB
testcase_14 AC 18 ms
5,376 KB
testcase_15 AC 7 ms
5,376 KB
testcase_16 AC 62 ms
5,376 KB
testcase_17 AC 18 ms
5,376 KB
testcase_18 AC 12 ms
5,376 KB
testcase_19 AC 48 ms
5,376 KB
testcase_20 AC 7 ms
5,376 KB
testcase_21 AC 68 ms
5,376 KB
testcase_22 AC 60 ms
5,376 KB
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using Int = int64_t;

void Solve() {
  Int n;
  std::cin >> n;
  std::priority_queue qn(std::greater{}, std::vector<Int>{});
  std::priority_queue qp(std::greater{}, std::vector<Int>{});
  while (n--) {
    Int a;
    std::cin >> a;
    if (a < 0) {
      qn.push(-a);
    } else if (0 < a) {
      qp.push(a);
    }
  }
  while (qn.size() && qp.size()) {
    Int x = qn.top();
    qn.pop();
    Int y = qp.top();
    qp.pop();
    Int z = y - x;
    if (z < 0) {
      qn.push(-z);
    } else if (0 < z) {
      qp.push(z);
    }
  }
  std::cout << (qn.size() + qp.size() == 1 ? "Yes\n" : "No\n");
}

int main() {
  std::ios::sync_with_stdio(false);
  std::cin.tie(nullptr);

  Solve();
}
0