結果

問題 No.1625 三角形の質問
ユーザー akakimidoriakakimidori
提出日時 2021-07-24 02:31:22
言語 Rust
(1.77.0)
結果
TLE  
実行時間 -
コード長 2,821 bytes
コンパイル時間 7,787 ms
コンパイル使用メモリ 150,580 KB
実行使用メモリ 11,428 KB
最終ジャッジ日時 2023-09-26 07:57:31
合計ジャッジ時間 20,343 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,384 KB
testcase_01 AC 137 ms
4,380 KB
testcase_02 AC 5,664 ms
11,116 KB
testcase_03 AC 1,346 ms
11,428 KB
testcase_04 AC 2,794 ms
6,712 KB
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

// ---------- begin scannner ----------
#[allow(dead_code)]
mod scanner {
    use std::str::FromStr;
    pub struct Scanner<'a> {
        it: std::str::SplitWhitespace<'a>,
    }
    impl<'a> Scanner<'a> {
        pub fn new(s: &'a String) -> Scanner<'a> {
            Scanner {
                it: s.split_whitespace(),
            }
        }
        pub fn next<T: FromStr>(&mut self) -> T {
            self.it.next().unwrap().parse::<T>().ok().unwrap()
        }
        pub fn next_bytes(&mut self) -> Vec<u8> {
            self.it.next().unwrap().bytes().collect()
        }
        pub fn next_chars(&mut self) -> Vec<char> {
            self.it.next().unwrap().chars().collect()
        }
        pub fn next_vec<T: FromStr>(&mut self, len: usize) -> Vec<T> {
            (0..len).map(|_| self.next()).collect()
        }
    }
}
// ---------- end scannner ----------

use std::io::Write;

fn main() {
    use std::io::Read;
    let mut s = String::new();
    std::io::stdin().read_to_string(&mut s).unwrap();
    let mut sc = scanner::Scanner::new(&s);
    let out = std::io::stdout();
    let mut out = std::io::BufWriter::new(out.lock());
    run(&mut sc, &mut out);
}

fn run<W: Write>(sc: &mut scanner::Scanner, out: &mut std::io::BufWriter<W>) {
    let n: usize = sc.next();
    let q: usize = sc.next();
    let mut l = vec![0i32; n];
    let mut r = vec![0i32; n];
    let mut s = vec![0i64; n];
    for ((l, r), s) in l.iter_mut().zip(r.iter_mut()).zip(s.iter_mut()) {
        let a = sc.next::<i32>();
        let b = sc.next::<i32>();
        let c = sc.next::<i32>();
        let d = sc.next::<i32>();
        let e = sc.next::<i32>();
        let f = sc.next::<i32>();
        *l = a.min(c).min(e);
        *r = a.max(c).max(e);
        let c = c - a;
        let d = d - b;
        let e = e - a;
        let f = f - b;
        *s = (c as i64 * f as i64 - d as i64 * e as i64).abs();
    }
    for _ in 0..q {
        let op: u8 = sc.next();
        if op == 1 {
            let a = sc.next::<i32>();
            let b = sc.next::<i32>();
            let c = sc.next::<i32>();
            let d = sc.next::<i32>();
            let e = sc.next::<i32>();
            let f = sc.next::<i32>();
            l.push(a.min(c).min(e));
            r.push(a.max(c).max(e));
            let c = c - a;
            let d = d - b;
            let e = e - a;
            let f = f - b;
            s.push((c as i64 * f as i64 - d as i64 * e as i64).abs());
        } else {
            let x = sc.next::<i32>();
            let y = sc.next::<i32>();
            let mut ans = -1;
            for ((l, r), s) in l.iter().zip(&r).zip(&s) {
                if x <= *l && *r <= y {
                    ans = ans.max(*s);
                }
            }
            writeln!(out, "{}", ans).ok();
        }
    }
}
0