結果
問題 | No.190 Dry Wet Moist |
ユーザー | kopricky |
提出日時 | 2017-07-29 05:12:57 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,807 bytes |
コンパイル時間 | 1,727 ms |
コンパイル使用メモリ | 171,048 KB |
実行使用メモリ | 12,672 KB |
最終ジャッジ日時 | 2024-10-10 21:15:11 |
合計ジャッジ時間 | 9,475 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
ソースコード
#include <bits/stdc++.h> #define ll long long #define INF 1000000005 #define MOD 1000000007 #define EPS 1e-10 #define rep(i,n) for(int i=0;i<(int)n;++i) #define each(a, b) for(auto (a): (b)) #define all(v) (v).begin(),(v).end() #define fi first #define se second #define pb push_back #define show(x) cout <<#x<<" = "<<(x)<<endl #define spair(p) cout <<#p<<": "<<p.fi<<" "<<p.se<<endl #define svec(v) cout<<#v<<":";rep(kbrni,v.size())cout<<" "<<v[kbrni];cout<<endl #define sset(s) cout<<#s<<":";each(kbrni,s)cout <<" "<<kbrni;cout<<endl using namespace std; typedef pair<int,int>P; const int MAX_N = 100005; map<int,int> mp; int main() { int n; cin >> n; vector<int> vec(n); rep(i,2*n){ cin >> vec[i]; mp[vec[i]]++; } multiset<int> st; rep(i,2*n){ st.insert(vec[i]); } int ans1 = 0; while(st.size() > 0){ int a = *st.begin(); if(a >= 0){ break; } auto it = st.lower_bound(-a); it--; if(it != st.begin()){ st.erase(it); st.erase(st.begin()); ans1++; }else{ break; } } int ans2 = 0; rep(i,100001){ ans2 += min(mp[i],mp[-i]); } st.clear(); rep(i,2*n){ st.insert(vec[i]); } int ans3 = 0; while(st.size() > 0){ auto it = st.end(); it--; int a = *it; if(a <= 0){ break; } it = st.upper_bound(-a); it++; if(it != st.end()){ it--; st.erase(it); it = st.end(); it--; st.erase(it); ans3++; }else{ break; } } cout << ans1 << " " << ans3 << " " << ans2 << "\n"; abort(); return 0; }