結果
問題 | No.190 Dry Wet Moist |
ユーザー | kurenai3110 |
提出日時 | 2016-11-01 18:14:19 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,137 bytes |
コンパイル時間 | 551 ms |
コンパイル使用メモリ | 66,608 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-25 01:02:29 |
合計ジャッジ時間 | 2,147 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
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 | 69 ms
6,816 KB |
testcase_23 | AC | 73 ms
6,820 KB |
testcase_24 | AC | 74 ms
6,816 KB |
testcase_25 | AC | 1 ms
6,816 KB |
testcase_26 | AC | 1 ms
6,816 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
ソースコード
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { int dry=0,wet=0,moist=0; int n;cin>>n; vector<int>minus,plus; for(int i=0;i<2*n;i++){ int a;cin>>a; if(a>0)plus.push_back(a); else if(a<0) minus.push_back(-a); } sort(plus.begin(),plus.end()); reverse(plus.begin(),plus.end()); sort(minus.begin(),minus.end()); reverse(minus.begin(),minus.end()); int j=0; int cnt=0; for(int i=0;i<plus.size()&&j<minus.size();i++){ if(plus[i]<minus[j]){ dry++; j++; }else cnt++; if(i==plus.size()-1){ dry+=min((2*n-dry*2-cnt*2)/2,(int)minus.size()-j+1); } } if(plus.size()==0)dry+=min((int)minus.size(),n); int i=0; cnt=0; for(int j=0;i<plus.size()&&j<minus.size();j++){ if(plus[i]>minus[j]){ wet++; i++; }else cnt++; if(j==minus.size()-1){ wet+=min((2*n-wet*2-cnt*2)/2,(int)plus.size()-i+1); } } if(minus.size()==0)wet+=min((int)plus.size(),n); i=0; for(int j=0;j<plus.size()&&i<minus.size();j++){ if(plus[j]==minus[i]){ moist++; i++; } } moist+=(2*n-plus.size()-minus.size())/2; cout<<dry<<" "<<wet<<" "<<moist<<endl; return 0; }