結果

問題 No.2796 Small Matryoshka
ユーザー coindarwcoindarw
提出日時 2024-06-28 22:17:33
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 230 ms / 2,000 ms
コード長 507 bytes
コンパイル時間 3,343 ms
コンパイル使用メモリ 255,476 KB
実行使用メモリ 14,336 KB
最終ジャッジ日時 2024-06-28 22:17:39
合計ジャッジ時間 5,908 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 31 ms
5,376 KB
testcase_06 AC 186 ms
12,800 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 147 ms
10,624 KB
testcase_09 AC 227 ms
14,336 KB
testcase_10 AC 227 ms
14,336 KB
testcase_11 AC 230 ms
14,208 KB
testcase_12 AC 62 ms
8,320 KB
testcase_13 AC 10 ms
5,376 KB
testcase_14 AC 53 ms
7,552 KB
testcase_15 AC 16 ms
5,376 KB
testcase_16 AC 27 ms
5,376 KB
testcase_17 AC 147 ms
9,856 KB
testcase_18 AC 178 ms
10,752 KB
testcase_19 AC 53 ms
5,632 KB
testcase_20 AC 69 ms
6,528 KB
testcase_21 AC 146 ms
9,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define rep(i,n) for(int i=0;i<int(n);++i)
using namespace std;
int main() {
int n;
cin>>n;
using P=pair<int,int>;
vector<P> vp(n);
rep(i,n)cin>>vp[i].first>>vp[i].second;
sort(vp.begin(),vp.end());
multiset<P> ms(vp.begin(), vp.end());
P cur = *ms.begin();
ms.erase(ms.begin());
int ans = 0;
while(!ms.empty()){
auto lb = ms.lower_bound(P(cur.second, 0));
if(lb == ms.end()) {
cur =* ms.begin();ms.erase(ms.begin());
ans++;
}else{
cur = *lb;
ms.erase(lb);
}
}
cout << ans << endl;
}
0