結果

問題 No.190 Dry Wet Moist
ユーザー maine_honzukimaine_honzuki
提出日時 2020-11-23 01:43:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 877 bytes
コンパイル時間 2,362 ms
コンパイル使用メモリ 206,064 KB
実行使用メモリ 8,008 KB
最終ジャッジ日時 2024-07-23 16:53:38
合計ジャッジ時間 5,398 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,356 KB
testcase_01 AC 4 ms
7,296 KB
testcase_02 AC 4 ms
7,324 KB
testcase_03 AC 4 ms
7,424 KB
testcase_04 AC 4 ms
7,424 KB
testcase_05 AC 4 ms
7,368 KB
testcase_06 AC 4 ms
7,184 KB
testcase_07 AC 4 ms
7,252 KB
testcase_08 AC 4 ms
7,376 KB
testcase_09 AC 4 ms
7,420 KB
testcase_10 AC 4 ms
7,416 KB
testcase_11 AC 4 ms
7,492 KB
testcase_12 AC 41 ms
7,552 KB
testcase_13 AC 48 ms
7,680 KB
testcase_14 AC 38 ms
7,552 KB
testcase_15 AC 53 ms
7,744 KB
testcase_16 AC 65 ms
7,900 KB
testcase_17 AC 12 ms
7,552 KB
testcase_18 AC 32 ms
7,416 KB
testcase_19 AC 66 ms
7,812 KB
testcase_20 AC 46 ms
7,680 KB
testcase_21 AC 9 ms
7,436 KB
testcase_22 AC 77 ms
8,008 KB
testcase_23 AC 80 ms
7,856 KB
testcase_24 AC 83 ms
7,872 KB
testcase_25 AC 4 ms
7,424 KB
testcase_26 AC 4 ms
7,420 KB
testcase_27 AC 52 ms
7,552 KB
testcase_28 AC 25 ms
7,436 KB
testcase_29 AC 33 ms
7,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int maine(vector<int>& A) {
    int book = 0;
    int l = 0, r = A.size() - 1;
    while (l < r) {
        if (A[l] + A[r] < 0) {
            book++;
            l++;
            r--;
        } else
            r--;
    }
    return book;
}

int main() {
    int N;
    cin >> N;
    vector<int> A(N * 2);
    for (int i = 0; i < N * 2; i++) {
        cin >> A[i];
    }

    int dry, wet, moist;
    sort(A.begin(), A.end());
    dry = maine(A);
    reverse(A.begin(), A.end());
    for (auto& x : A)
        x *= -1;
    wet = maine(A);

    int cnt[1000010] = {};
    for (auto& x : A) {
        cnt[x + 100000]++;
    }

    moist = 0;
    for (int i = 1; i <= 100000; i++) {
        moist += min(cnt[100000 + i], cnt[100000 - i]);
    }
    moist += cnt[100000] / 2;

    cout << dry << " " << wet << " " << moist << endl;
}
0