結果

問題 No.2796 Small Matryoshka
ユーザー noya2noya2
提出日時 2024-06-13 14:48:02
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 421 ms / 2,000 ms
コード長 334 bytes
コンパイル時間 3,128 ms
コンパイル使用メモリ 250,224 KB
実行使用メモリ 19,712 KB
最終ジャッジ日時 2024-06-13 14:51:47
合計ジャッジ時間 7,951 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 45 ms
6,944 KB
testcase_06 AC 376 ms
19,712 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 227 ms
9,856 KB
testcase_09 AC 361 ms
14,720 KB
testcase_10 AC 365 ms
14,592 KB
testcase_11 AC 421 ms
16,640 KB
testcase_12 AC 42 ms
6,944 KB
testcase_13 AC 7 ms
6,944 KB
testcase_14 AC 36 ms
6,940 KB
testcase_15 AC 12 ms
6,944 KB
testcase_16 AC 19 ms
6,944 KB
testcase_17 AC 295 ms
14,848 KB
testcase_18 AC 340 ms
16,384 KB
testcase_19 AC 78 ms
7,552 KB
testcase_20 AC 119 ms
8,960 KB
testcase_21 AC 292 ms
14,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

int main(){
    int n; std::cin >> n;
    std::map<int,int> mp;
    while (n--){
        int l, r; std::cin >> l >> r;
        mp[l]++;
        mp[r]--;
    }
    int ans = 0, cur = 0;
    for (auto [x, c] : mp){
        cur += c;
        ans = std::max(ans, cur-1);
    }
    std::cout << ans << std::endl;
}
0