結果

問題 No.2812 Plus Minus Blackboard
ユーザー tobbietobbie
提出日時 2024-08-08 21:41:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,538 bytes
コンパイル時間 1,783 ms
コンパイル使用メモリ 178,316 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-08 21:41:24
合計ジャッジ時間 4,059 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 88 ms
6,940 KB
testcase_04 AC 50 ms
6,940 KB
testcase_05 AC 79 ms
6,944 KB
testcase_06 AC 16 ms
6,940 KB
testcase_07 AC 12 ms
6,944 KB
testcase_08 AC 12 ms
6,944 KB
testcase_09 AC 68 ms
6,940 KB
testcase_10 AC 9 ms
6,940 KB
testcase_11 AC 45 ms
6,944 KB
testcase_12 AC 35 ms
6,940 KB
testcase_13 AC 86 ms
6,940 KB
testcase_14 AC 23 ms
6,944 KB
testcase_15 AC 9 ms
6,940 KB
testcase_16 AC 75 ms
6,944 KB
testcase_17 AC 22 ms
6,944 KB
testcase_18 AC 16 ms
6,944 KB
testcase_19 AC 60 ms
6,944 KB
testcase_20 AC 9 ms
6,940 KB
testcase_21 AC 81 ms
6,944 KB
testcase_22 AC 72 ms
6,940 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

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;
  while (k > 0 && i < in-1) {
    i++; k--;
  }
  while (k > 0 && j < ip-1) {
    j++; k--;
  }
  bool ans = false;
  if (in == 0 && ip == 0)
    ans = true;
  if (in == 0 && (ip-1) - j == 0)
    ans = true;
  if ((in-1) - i == 0 && ip == 0)
    ans = true;
  if ((in-1) - i == 0 && (ip-1) - j == 0)
    ans = true;
  if (ans)
    cout << "Yes" << endl;
  else
    cout << "No" << endl;
  return 0;
}
0