結果

問題 No.2796 Small Matryoshka
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-07-02 14:04:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 645 bytes
コンパイル時間 2,071 ms
コンパイル使用メモリ 208,220 KB
実行使用メモリ 7,528 KB
最終ジャッジ日時 2024-07-02 14:04:48
合計ジャッジ時間 3,859 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 12 ms
5,376 KB
testcase_06 AC 68 ms
7,400 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 55 ms
7,528 KB
testcase_09 AC 75 ms
7,528 KB
testcase_10 AC 76 ms
7,528 KB
testcase_11 AC 88 ms
7,524 KB
testcase_12 AC 25 ms
5,376 KB
testcase_13 AC 5 ms
5,376 KB
testcase_14 AC 23 ms
5,424 KB
testcase_15 AC 8 ms
5,376 KB
testcase_16 AC 12 ms
5,376 KB
testcase_17 AC 51 ms
5,476 KB
testcase_18 AC 61 ms
7,396 KB
testcase_19 AC 19 ms
5,376 KB
testcase_20 AC 25 ms
5,376 KB
testcase_21 AC 50 ms
5,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

int main(){
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);

    //全てのxについて、L_i <= x <= R_iを満たすiの数の最大値だけ操作しなければならない。
    int N, mx=0, s=0, a, b;
    cin >> N;
    vector<pair<int, int>> v;
    for (int i=0; i<N; i++){
        cin >> a >> b; b--;
        v.push_back({a, -1});
        v.push_back({b, 1});
    }

    sort(v.begin(), v.end());
    for (auto [a, b] : v){
        if (b == -1) s++;
        else if (b == 1) s--;
        mx = max(mx, s);
    }
    cout << mx-1 << endl;

    return 0;
}
0