結果

問題 No.190 Dry Wet Moist
ユーザー MayimgMayimg
提出日時 2020-07-27 12:15:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 1,070 bytes
コンパイル時間 2,378 ms
コンパイル使用メモリ 214,328 KB
実行使用メモリ 14,972 KB
最終ジャッジ日時 2024-06-28 20:03:24
合計ジャッジ時間 5,433 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 46 ms
6,892 KB
testcase_13 AC 59 ms
7,148 KB
testcase_14 AC 43 ms
6,556 KB
testcase_15 AC 66 ms
7,884 KB
testcase_16 AC 84 ms
8,404 KB
testcase_17 AC 11 ms
5,376 KB
testcase_18 AC 36 ms
6,400 KB
testcase_19 AC 82 ms
8,592 KB
testcase_20 AC 54 ms
7,232 KB
testcase_21 AC 8 ms
5,376 KB
testcase_22 AC 146 ms
14,852 KB
testcase_23 AC 117 ms
10,204 KB
testcase_24 AC 150 ms
14,972 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 3 ms
5,376 KB
testcase_27 AC 74 ms
8,200 KB
testcase_28 AC 30 ms
5,760 KB
testcase_29 AC 40 ms
6,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;
signed main() { 
  ios::sync_with_stdio(false); cin.tie(0);
  auto calc = [] (vector<int> a, vector<int> b, int zero) -> int {
    int res = 0;
    multiset<int> st;
    for (auto& x : b) st.insert(x);
    for (int i = 0; i < zero; i++) a.push_back(0);
    sort(a.rbegin(), a.rend());
    for (auto& x : a) {
      auto it = st.upper_bound(x);
      if (it == st.end()) continue;
      st.erase(it);
      res++;
    }
    return res + (int) st.size() / 2;
  };
  int n;
  cin >> n;
  vector<int> po, ne;
  vector<int> cp(101010), cn(101010);
  int z = 0;
  for (int i = 0; i < n + n; i++) {
    int a;
    cin >> a;
    if (a > 0) {
      po.push_back(a);
      cp[a]++;
    }
    if (a < 0) {
      ne.push_back(-a);
      cn[-a]++;
    }
    if (a == 0) z++;
  }
  int dry = calc(po, ne, z);
  int wet = calc(ne, po, z);
  int moist = 0;
  for (int i = 0; i < 101010; i++) {
    moist += min(cp[i], cn[i]);
  }
  moist += z / 2;
  cout << dry << " " << wet << " " << moist << endl;
  return 0;
}
0