結果

問題 No.190 Dry Wet Moist
ユーザー 👑 CleyLCleyL
提出日時 2023-06-19 16:42:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 751 bytes
コンパイル時間 921 ms
コンパイル使用メモリ 96,140 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-06-27 05:09:36
合計ジャッジ時間 3,513 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 70 ms
7,552 KB
testcase_13 AC 89 ms
8,320 KB
testcase_14 AC 70 ms
7,424 KB
testcase_15 AC 96 ms
8,704 KB
testcase_16 AC 125 ms
9,600 KB
testcase_17 AC 16 ms
5,376 KB
testcase_18 AC 56 ms
6,912 KB
testcase_19 AC 122 ms
9,472 KB
testcase_20 AC 81 ms
8,192 KB
testcase_21 AC 10 ms
5,376 KB
testcase_22 AC 160 ms
12,160 KB
testcase_23 AC 212 ms
13,440 KB
testcase_24 AC 146 ms
8,064 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 105 ms
9,344 KB
testcase_28 AC 46 ms
6,784 KB
testcase_29 AC 61 ms
7,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
using namespace std;
int main(){
  int n;cin>>n;n*=2;
  vector<int> A(n);
  map<int,int> B;
  for(int i = 0; n > i; i++){
    cin>>A[i];
    B[A[i]]++;
  }
  
  sort(A.begin(), A.end());
  int nw = n-1;
  int dry = 0;
  for(int i = 0; i < nw ; i++){
    while(i < nw && A[i]+A[nw] >= 0)nw--;
    if(i < nw)dry++;
    nw--;
  }
  nw = 0;
  int wet = 0;
  for(int i = n-1; nw < i; i--){
    while(nw < i && A[nw]+A[i] <= 0)nw++;
    if(nw < i)wet++;
    nw++;
  }
  int moist = 0;
  for(auto x: B){
    if(x.first < 0)continue;
    else if(x.first == 0)moist += x.second/2;
    else moist += min(x.second, B[-x.first]);
  }
  cout << dry << " " << wet << " " << moist << endl;
}
0