結果

問題 No.2796 Small Matryoshka
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-06-30 14:36:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 237 ms / 2,000 ms
コード長 733 bytes
コンパイル時間 2,303 ms
コンパイル使用メモリ 208,304 KB
実行使用メモリ 8,048 KB
最終ジャッジ日時 2024-06-30 14:36:27
合計ジャッジ時間 5,350 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,816 KB
testcase_01 AC 4 ms
6,944 KB
testcase_02 AC 4 ms
6,940 KB
testcase_03 AC 4 ms
6,944 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 37 ms
6,944 KB
testcase_06 AC 218 ms
7,588 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 166 ms
7,156 KB
testcase_09 AC 227 ms
8,044 KB
testcase_10 AC 227 ms
8,048 KB
testcase_11 AC 237 ms
8,040 KB
testcase_12 AC 53 ms
6,944 KB
testcase_13 AC 10 ms
6,944 KB
testcase_14 AC 47 ms
6,944 KB
testcase_15 AC 16 ms
6,944 KB
testcase_16 AC 25 ms
6,940 KB
testcase_17 AC 153 ms
6,944 KB
testcase_18 AC 178 ms
7,056 KB
testcase_19 AC 55 ms
6,940 KB
testcase_20 AC 76 ms
6,940 KB
testcase_21 AC 154 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    int n;
    cin >> n;
    vector<int> l(n), r(n);
    vector<int> v;
    for (int i = 0; i < n; i++) {
        cin >> l[i] >> r[i];
        v.push_back(l[i]);
        v.push_back(r[i]);
    }
    sort(v.begin(), v.end());
    v.erase(unique(v.begin(), v.end()), v.end());
    vector<int> cnt(400010);
    for (int i = 0; i < n; i++) {
        int il = lower_bound(v.begin(), v.end(), l[i]) - v.begin();
        int ir = lower_bound(v.begin(), v.end(), r[i]) - v.begin();
        cnt[il]++;
        cnt[ir]--;
    }
    for (int i = 1; i < 400010; i++) {
        cnt[i] += cnt[i - 1];
    }
    int mx = *max_element(cnt.begin(), cnt.end());
    cout << mx - 1 << endl;
}
0