結果
問題 | No.190 Dry Wet Moist |
ユーザー | 👑 CleyL |
提出日時 | 2023-06-19 16:40:45 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 701 bytes |
コンパイル時間 | 1,098 ms |
コンパイル使用メモリ | 94,328 KB |
実行使用メモリ | 13,312 KB |
最終ジャッジ日時 | 2024-06-27 05:08:04 |
合計ジャッジ時間 | 3,606 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,948 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 3 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 162 ms
12,032 KB |
testcase_23 | AC | 222 ms
13,312 KB |
testcase_24 | AC | 152 ms
7,936 KB |
testcase_25 | WA | - |
testcase_26 | AC | 2 ms
6,940 KB |
testcase_27 | WA | - |
testcase_28 | AC | 47 ms
6,944 KB |
testcase_29 | AC | 61 ms
7,360 KB |
ソースコード
#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; moist += min(x.second, B[-x.first]); } cout << dry << " " << wet << " " << moist << endl; }