結果

問題 No.1338 Giant Class
ユーザー phsplsphspls
提出日時 2022-11-19 22:11:43
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 168 ms / 2,000 ms
コード長 908 bytes
コンパイル時間 14,887 ms
コンパイル使用メモリ 378,968 KB
実行使用メモリ 7,012 KB
最終ジャッジ日時 2024-09-21 03:18:36
合計ジャッジ時間 17,552 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 145 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 105 ms
6,432 KB
testcase_07 AC 156 ms
6,848 KB
testcase_08 AC 100 ms
6,360 KB
testcase_09 AC 90 ms
5,376 KB
testcase_10 AC 164 ms
6,940 KB
testcase_11 AC 16 ms
5,376 KB
testcase_12 AC 117 ms
5,376 KB
testcase_13 AC 95 ms
5,376 KB
testcase_14 AC 26 ms
5,376 KB
testcase_15 AC 38 ms
5,376 KB
testcase_16 AC 13 ms
5,376 KB
testcase_17 AC 94 ms
5,376 KB
testcase_18 AC 26 ms
5,376 KB
testcase_19 AC 45 ms
5,376 KB
testcase_20 AC 166 ms
7,008 KB
testcase_21 AC 167 ms
7,012 KB
testcase_22 AC 168 ms
7,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::collections::HashMap;


fn main() {
    let mut hwq = String::new();
    std::io::stdin().read_line(&mut hwq).ok();
    let hwq: Vec<usize> = hwq.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
    let h = hwq[0];
    let w = hwq[1];
    let q = hwq[2];
    let queries = (0..q).map(|_| {
        let mut temp = String::new();
        std::io::stdin().read_line(&mut temp).ok();
        let temp: Vec<usize> = temp.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
        (temp[0]-1, temp[1]-1)
    })
    .collect::<Vec<_>>();

    let mut mins = HashMap::new();
    let mut summary = h*w;
    for &(y, x) in queries.iter() {
        let val = *mins.get(&x).unwrap_or(&h);
        if val < y {
            println!("{}", summary);
        } else {
            summary -= val - y;
            mins.insert(x, y);
            println!("{}", summary);
        }
    }
}
0