結果

問題 No.2796 Small Matryoshka
ユーザー 乾麺乾麺
提出日時 2024-09-29 22:48:38
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 475 bytes
コンパイル時間 6,214 ms
コンパイル使用メモリ 313,736 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-09-29 22:48:51
合計ジャッジ時間 8,778 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 WA -
testcase_05 AC 26 ms
6,816 KB
testcase_06 AC 143 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 114 ms
6,816 KB
testcase_09 AC 169 ms
6,820 KB
testcase_10 AC 167 ms
6,816 KB
testcase_11 AC 165 ms
6,820 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
typedef long long ll;
typedef long double ld;
#define sz(c) ((ll)(c).size())
#define ALL(x) x.begin(),x.end()
#define rep(i,a,b) for(int i=a;i<b;i++)
const long long inf=1e14;
int main() {
int n;cin>>n;
vector<pair<int,int>>P(n);
int c=-1;
rep(i,0,n){
	int r,R;cin>>r>>R;
	P[i]={R,r};
}
sort(ALL(P));
int ans=0;
rep(i,0,n){
	if(c<=P[i].second){ans++;c=P[i].first;}
}
cout<<n-ans;
}
0