結果

問題 No.190 Dry Wet Moist
ユーザー fiordfiord
提出日時 2015-11-19 21:12:32
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 524 bytes
コンパイル時間 1,789 ms
コンパイル使用メモリ 163,576 KB
実行使用メモリ 13,760 KB
最終ジャッジ日時 2024-09-13 17:04:15
合計ジャッジ時間 7,658 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,760 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
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 TLE -
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
	int n;	cin>>n;	n*=2;
	vector<int> a(n);
	for(int i=0;i<n;i++)	cin>>a[i];
	sort(a.begin(),a.end());
	int s=0,t=a.size()-1;
	int dry=0,moist=0,wet=0;
	while(s<t){
		if(a[s]+a[t]<0){
			dry++;	s++;	t--;
		}
		else 	t--;
	}
	for(int i=0;i<(int)a.size()&&a[i]<=0;i++){
		if(find(a.begin(),a.end(),-a[i])!=a.end())	moist++;
	}
	s=0,t=a.size()-1;
	while(s<t){
		if(a[s]+a[t]>0){
			wet++;	s++;	t--;
		}
		else 	s++;
	}
	cout<<dry<<" "<<wet<<" "<<moist<<endl;
	return 0;
}
0