結果

問題 No.2812 Plus Minus Blackboard
ユーザー tobbietobbie
提出日時 2024-08-08 21:34:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,300 bytes
コンパイル時間 2,136 ms
コンパイル使用メモリ 176,728 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-08 21:34:15
合計ジャッジ時間 5,419 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 90 ms
5,376 KB
testcase_04 AC 53 ms
5,376 KB
testcase_05 AC 85 ms
5,376 KB
testcase_06 AC 17 ms
5,376 KB
testcase_07 AC 14 ms
5,376 KB
testcase_08 AC 11 ms
5,376 KB
testcase_09 AC 73 ms
5,376 KB
testcase_10 AC 10 ms
5,376 KB
testcase_11 AC 49 ms
5,376 KB
testcase_12 AC 38 ms
5,376 KB
testcase_13 AC 90 ms
5,376 KB
testcase_14 AC 24 ms
5,376 KB
testcase_15 AC 9 ms
5,376 KB
testcase_16 AC 79 ms
5,376 KB
testcase_17 AC 24 ms
5,376 KB
testcase_18 AC 17 ms
5,376 KB
testcase_19 AC 64 ms
5,376 KB
testcase_20 AC 9 ms
5,376 KB
testcase_21 AC 90 ms
5,376 KB
testcase_22 AC 81 ms
5,376 KB
testcase_23 WA -
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define rep(i, n) for (int i = 0; i < (int)n; i++)
using ll = long long int;

int main() {
  int n;
  cin >> n;
  vector<int> ap, an, az;
  rep(i, n) {
    int ai;
    cin >> ai;
    if (ai > 0)
      ap.push_back(ai);
    else if (ai < 0)
      an.push_back(ai);
    else
      az.push_back(ai);
  }
  sort(ap.begin(), ap.end());
  sort(an.rbegin(), an.rend());
  int ip = (int)ap.size(), in = (int)an.size(), iz = (int)az.size();
  ll sump, sumn;;
  if (ip > 0) sump = ap[ip-1];
  else        sump = 0;
  if (in > 0) sumn = an[in-1];
  else        sumn = 0;
  int i = 0;
  int j = 0;
  while (i < in-1 || j < ip-1) {
    bool done = false;
    if (sump >= 0 && sumn <= 0) {
      while (i < in-1 && sump >= 0) {
	sump += an[i];
	i++;
	done = true;
      }
      while (j < ip-1 && sumn <= 0) {
	sumn += ap[j];
	j++;
	done = true;
      }
    }
    if (sump <= 0 && sumn >= 0) {
      while (j < ip-1 && sump <= 0) {
	sump += ap[j];
	j++;
	done = true;
      }
      while (i < in-1 && sumn >= 0) {
	sumn += an[i];
	i++;
	done = true;
      }
    }
    if (!done) break;
  }
  int k = iz;
  bool ans = false;
  if ((in-1) - i == 0 && (ip-1) - j == 0)
    ans = true;
  if (ans)
    cout << "Yes" << endl;
  else
    cout << "No" << endl;
  return 0;
}
0