結果

問題 No.2796 Small Matryoshka
ユーザー Yukino DX.Yukino DX.
提出日時 2024-07-12 21:52:25
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 686 bytes
コンパイル時間 13,151 ms
コンパイル使用メモリ 401,648 KB
実行使用メモリ 27,276 KB
最終ジャッジ日時 2024-07-12 21:52:42
合計ジャッジ時間 16,225 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 0 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 16 ms
6,944 KB
testcase_06 AC 102 ms
25,896 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 64 ms
16,304 KB
testcase_09 AC 106 ms
27,276 KB
testcase_10 AC 109 ms
27,268 KB
testcase_11 AC 115 ms
27,184 KB
testcase_12 AC 26 ms
6,044 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 22 ms
5,632 KB
testcase_15 AC 7 ms
5,376 KB
testcase_16 AC 11 ms
5,376 KB
testcase_17 AC 74 ms
22,176 KB
testcase_18 AC 84 ms
23,068 KB
testcase_19 AC 24 ms
7,916 KB
testcase_20 AC 36 ms
11,888 KB
testcase_21 AC 76 ms
22,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::collections::HashMap;

use proconio::input;

fn main() {
    input! {
        n:usize,
        r:[(usize,usize);n],
    }

    let mut comp = HashMap::new();
    let mut vals = vec![];
    for i in 0..n {
        vals.push(r[i].0);
        vals.push(r[i].1);
    }

    vals.sort();
    vals.dedup();
    for (i, &val) in vals.iter().enumerate() {
        comp.insert(val, i);
    }

    let mut imos = vec![0; 2 * n];
    for i in 0..n {
        imos[comp[&r[i].0]] += 1;
        imos[comp[&r[i].1]] -= 1;
    }

    let mut ans = imos[0];
    for i in 1..2 * n {
        imos[i] += imos[i - 1];
        ans = ans.max(imos[i]);
    }

    ans -= 1;
    println!("{}", ans);
}
0