結果

問題 No.2796 Small Matryoshka
ユーザー kotatsugamekotatsugame
提出日時 2024-06-28 21:24:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 440 bytes
コンパイル時間 662 ms
コンパイル使用メモリ 77,196 KB
実行使用メモリ 14,464 KB
最終ジャッジ日時 2024-06-28 21:24:45
合計ジャッジ時間 2,548 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 10 ms
6,944 KB
testcase_06 AC 56 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 45 ms
6,944 KB
testcase_09 AC 108 ms
14,464 KB
testcase_10 AC 112 ms
14,336 KB
testcase_11 AC 116 ms
14,336 KB
testcase_12 AC 34 ms
6,940 KB
testcase_13 AC 6 ms
6,940 KB
testcase_14 AC 30 ms
6,940 KB
testcase_15 AC 9 ms
6,940 KB
testcase_16 AC 16 ms
6,940 KB
testcase_17 AC 73 ms
7,296 KB
testcase_18 AC 79 ms
7,808 KB
testcase_19 AC 23 ms
6,940 KB
testcase_20 AC 32 ms
6,940 KB
testcase_21 AC 68 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<set>
#include<algorithm>
#include<cassert>
using namespace std;
int N;
pair<int,int>T[2<<17];
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cin>>N;
	for(int i=0;i<N;i++)
	{
		int a,b;cin>>a>>b;
		T[i]=make_pair(b,a);
	}
	sort(T,T+N);
	multiset<int>S;
	for(int i=N;i--;)
	{
		auto it=S.lower_bound(T[i].first);
		if(it!=S.end())S.erase(it);
		S.insert(T[i].second);
	}
	cout<<S.size()-1<<"\n";
}
0