結果

問題 No.190 Dry Wet Moist
ユーザー not_522not_522
提出日時 2015-08-19 22:21:02
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 777 bytes
コンパイル時間 1,595 ms
コンパイル使用メモリ 168,540 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-07-18 10:36:26
合計ジャッジ時間 3,629 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 33 ms
5,376 KB
testcase_13 AC 41 ms
5,504 KB
testcase_14 AC 34 ms
5,376 KB
testcase_15 AC 48 ms
5,504 KB
testcase_16 AC 57 ms
6,400 KB
testcase_17 AC 8 ms
5,376 KB
testcase_18 AC 27 ms
5,376 KB
testcase_19 AC 56 ms
6,144 KB
testcase_20 AC 38 ms
5,376 KB
testcase_21 AC 7 ms
5,376 KB
testcase_22 AC 77 ms
6,272 KB
testcase_23 AC 69 ms
6,400 KB
testcase_24 AC 71 ms
6,400 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 45 ms
5,376 KB
testcase_28 AC 20 ms
5,376 KB
testcase_29 AC 26 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main() {
  int n;
  cin >> n;
  vector<int> a(2 * n);
  for (int& i : a) cin >> i;
  sort(a.begin(), a.end());
  deque<int> b(a.begin(), a.end()), c = b, d = b;
  int dry = 0, wet = 0, moist = 0;
  while (b.size() > 1u) {
    if (b.front() + b.back() < 0) {
      ++dry;
      b.pop_front();
    }
    b.pop_back();
  }
  while (c.size() > 1u) {
    if (c.front() + c.back() > 0) {
      ++wet;
      c.pop_back();
    }
    c.pop_front();
  }
  while (d.size() > 1u) {
    if (d.front() + d.back() == 0) {
      ++moist;
      d.pop_front();
      d.pop_back();
    } else if (d.front() + d.back() < 0) {
      d.pop_front();
    } else {
      d.pop_back();
    }
  }
  cout << dry << " " << wet << " " << moist << endl;
}
0