結果

問題 No.2796 Small Matryoshka
ユーザー kentikenti
提出日時 2024-06-28 22:25:43
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 198 ms / 2,000 ms
コード長 593 bytes
コンパイル時間 1,758 ms
コンパイル使用メモリ 99,640 KB
実行使用メモリ 6,784 KB
最終ジャッジ日時 2024-06-28 22:25:50
合計ジャッジ時間 3,476 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 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 29 ms
5,376 KB
testcase_06 AC 168 ms
6,272 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 133 ms
5,760 KB
testcase_09 AC 181 ms
6,784 KB
testcase_10 AC 188 ms
6,656 KB
testcase_11 AC 198 ms
6,656 KB
testcase_12 AC 49 ms
5,376 KB
testcase_13 AC 8 ms
5,376 KB
testcase_14 AC 40 ms
5,376 KB
testcase_15 AC 13 ms
5,376 KB
testcase_16 AC 19 ms
5,376 KB
testcase_17 AC 115 ms
5,504 KB
testcase_18 AC 137 ms
5,760 KB
testcase_19 AC 43 ms
5,376 KB
testcase_20 AC 59 ms
5,376 KB
testcase_21 AC 113 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
using namespace std;
typedef pair<int, int> P;

const int MAX_N = 200000;
int N, r, R;
P mat[MAX_N * 2];

int main() {
    cin >> N;
    for (int i = 0; i < N; i++) {
        cin >> r >> R;
        mat[i * 2] = make_pair(r, 1);
        mat[i * 2 + 1] = make_pair(R, -1);
    }
    sort(mat, mat + 2 * N);
    int num = 0, rad = 0, ans = 0;
    for (int i = 0; i < 2 * N; i++) {
        if (rad != mat[i].first)
            ans = max(ans, num);
        num += mat[i].second;
        rad = mat[i].first;
    }
    cout << ans - 1 << endl;
    return 0;
}
0