結果

問題 No.1338 Giant Class
ユーザー StrorkisStrorkis
提出日時 2021-01-15 22:01:46
言語 Rust
(1.77.0 + proconio)
結果
RE  
実行時間 -
コード長 1,565 bytes
コンパイル時間 12,688 ms
コンパイル使用メモリ 388,492 KB
実行使用メモリ 785,976 KB
最終ジャッジ日時 2024-05-04 23:48:42
合計ジャッジ時間 14,179 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
6,812 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 16 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 37 ms
71,304 KB
testcase_07 AC 46 ms
71,648 KB
testcase_08 AC 21 ms
24,292 KB
testcase_09 AC 14 ms
8,520 KB
testcase_10 AC 30 ms
24,820 KB
testcase_11 AC 20 ms
62,692 KB
testcase_12 AC 15 ms
6,940 KB
testcase_13 RE -
testcase_14 MLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::{Read, Write};

struct Scanner<R> { bytes: std::io::Bytes<R>, buf: Vec<u8> }
 
impl<R: Read> Scanner<R> {
    fn new(r: R) -> Scanner<R> {
        Scanner { bytes: r.bytes(), buf: Vec::new() }
    }
  
    fn next(&mut self) -> &str {
        self.buf = {
            self.bytes.by_ref().map(|b| b.unwrap())
                .skip_while(|b| b.is_ascii_whitespace())
                .take_while(|b| !b.is_ascii_whitespace())
                .collect::<Vec<_>>()
        };
        unsafe { std::str::from_utf8_unchecked(&self.buf) }
    }
}

macro_rules! scan {
    ($sc:expr, [$t:tt; $n:expr]) => (
        (0..$n).map(|_| scan!($sc, $t)).collect::<Vec<_>>()
    );
    ($sc:expr, ($($t:tt),*)) => (($(scan!($sc, $t)),*));
    ($sc:expr, Usize1) => (scan!($sc, usize) - 1);
    ($sc:expr, Bytes) => ($sc.next().bytes().collect::<Vec<_>>());
    ($sc:expr, Chars) => ($sc.next().chars().collect::<Vec<_>>());
    ($sc:expr, $t:ty) => ($sc.next().parse::<$t>().unwrap());
}

fn run<R: Read, W: Write>(mut sc: Scanner<R>, mut wr: W) {
    let (h, w, q) = scan!(sc, (usize, usize, usize));
    let mut a = vec![h; w];
    let mut ans = h * w;
    for _ in 0..q {
        let (y, x) = scan!(sc, (Usize1, Usize1));
        if y < a[x] {
            ans -= a[x] - y;
            a[x] = y;
        }
        writeln!(wr, "{}", ans).ok();
    }
}

fn main() {
    let (stdin, stdout) = (std::io::stdin(), std::io::stdout());
    let sc = Scanner::new(std::io::BufReader::new(stdin.lock()));
    let wr = std::io::BufWriter::new(stdout.lock());
    run(sc, wr);
}
0