結果

問題 No.2796 Small Matryoshka
ユーザー 👑 potato167potato167
提出日時 2024-06-19 04:59:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 312 ms / 2,000 ms
コード長 530 bytes
コンパイル時間 3,100 ms
コンパイル使用メモリ 214,588 KB
実行使用メモリ 14,336 KB
最終ジャッジ日時 2024-06-19 04:59:21
合計ジャッジ時間 6,768 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 29 ms
6,940 KB
testcase_06 AC 165 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 130 ms
6,940 KB
testcase_09 AC 240 ms
14,208 KB
testcase_10 AC 282 ms
14,336 KB
testcase_11 AC 312 ms
14,208 KB
testcase_12 AC 73 ms
6,944 KB
testcase_13 AC 10 ms
6,944 KB
testcase_14 AC 62 ms
6,944 KB
testcase_15 AC 17 ms
6,940 KB
testcase_16 AC 29 ms
6,940 KB
testcase_17 AC 164 ms
7,040 KB
testcase_18 AC 184 ms
7,552 KB
testcase_19 AC 53 ms
6,940 KB
testcase_20 AC 75 ms
6,940 KB
testcase_21 AC 158 ms
7,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main(){
	int N;
	cin >> N;
	vector<pair<int, int>> p(N);
	for (int i = 0; i < N; i++) cin >> p[i].first >> p[i].second;
	sort(p.begin(), p.end(), [&](pair<int, int> l, pair<int,int> r){
		return l.second > r.second;
	});
	set<pair<int, int>> s;
	s.insert({1 << 30, -1});
	int ans = N - 1;
	for (int i = 0; i < N;i++){
		auto tmp = (*s.lower_bound({p[i].second, -1}));
		if (tmp.second != -1){
			s.erase(tmp);
			ans--;
		}
		s.insert({p[i].first,  i});
	}
	cout << ans << "\n";
}
0