結果

問題 No.1285 ゴミ捨て
ユーザー horiesinitihoriesiniti
提出日時 2023-02-15 00:28:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 463 bytes
コンパイル時間 704 ms
コンパイル使用メモリ 75,100 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-07-17 11:57:11
合計ジャッジ時間 3,669 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 126 ms
12,416 KB
testcase_08 AC 5 ms
6,940 KB
testcase_09 AC 48 ms
7,168 KB
testcase_10 AC 104 ms
11,264 KB
testcase_11 AC 95 ms
10,496 KB
testcase_12 AC 66 ms
8,704 KB
testcase_13 AC 66 ms
8,576 KB
testcase_14 AC 113 ms
12,032 KB
testcase_15 AC 80 ms
9,472 KB
testcase_16 AC 21 ms
6,940 KB
testcase_17 AC 21 ms
6,940 KB
testcase_18 AC 19 ms
6,940 KB
testcase_19 AC 44 ms
7,040 KB
testcase_20 AC 18 ms
6,944 KB
testcase_21 AC 26 ms
6,940 KB
testcase_22 AC 130 ms
12,800 KB
testcase_23 AC 134 ms
12,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <map>
using namespace std;

map<int,int> ms,ms2;


int main() {
	int n;
	cin>>n;
	for(int i=0;i<n;i++){
		int a;
		cin>>a;
		ms[a]++;
		ms2[a]++;
	}
	map<int,int>::iterator it,it2;
	for(map<int,int>::iterator it=ms.begin();it!=ms.end();it++){
		int s,c;
		s=(*it).first+1;
		it2=ms2.upper_bound(s);
		if(it2!=ms2.end()){
			(*it2).second--;
			if((*it2).second<=0){
				ms2.erase(it2);
			}
			n--;
		}
	}
	cout<<n<<endl;
	return 0;
}
0