結果

問題 No.2796 Small Matryoshka
ユーザー t98slider
提出日時 2024-06-29 16:12:43
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 428 bytes
コンパイル時間 2,086 ms
コンパイル使用メモリ 199,168 KB
最終ジャッジ日時 2025-02-22 01:35:13
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 8 WA * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int N, ans, mx = -1;
    cin >> N;
    ans = N;
    vector<pair<int,int>> a(N);
    for(auto &&[r, R] : a){
        cin >> r >> R;
        swap(r, R);
    }
    sort(a.begin(), a.end());
    for(auto [R, r] : a){
        if (mx <= r){
            mx = R;
            ans--;
        }
    }
    cout << ans << '\n';
}
0