結果

問題 No.2796 Small Matryoshka
ユーザー shobonvipshobonvip
提出日時 2024-06-13 21:47:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 188 ms / 2,000 ms
コード長 409 bytes
コンパイル時間 2,378 ms
コンパイル使用メモリ 207,184 KB
実行使用メモリ 8,400 KB
最終ジャッジ日時 2024-06-13 21:47:55
合計ジャッジ時間 6,620 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 28 ms
6,944 KB
testcase_06 AC 155 ms
7,632 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 121 ms
7,888 KB
testcase_09 AC 188 ms
7,632 KB
testcase_10 AC 177 ms
7,888 KB
testcase_11 AC 182 ms
8,400 KB
testcase_12 AC 45 ms
6,940 KB
testcase_13 AC 7 ms
6,940 KB
testcase_14 AC 38 ms
6,940 KB
testcase_15 AC 12 ms
6,940 KB
testcase_16 AC 20 ms
6,940 KB
testcase_17 AC 112 ms
6,940 KB
testcase_18 AC 130 ms
7,504 KB
testcase_19 AC 43 ms
6,940 KB
testcase_20 AC 57 ms
6,944 KB
testcase_21 AC 116 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int main(){
	int n; cin >> n;
	vector<pair<int,int>> event;
	for (int i=0; i<n; i++){
		int l, r; cin >> l >> r;
		l *= 2;
		r *= 2;
		r -= 1;
		event.push_back(pair(l, +1));
		event.push_back(pair(r, -1));
	}
	sort(event.begin(), event.end());

	int ans = 0;
	int tmp = 0;
	for (auto [c, d]: event){
		tmp += d;
		ans = max(ans, tmp);
	}
	cout << ans-1 << '\n';
}
0