結果

問題 No.497 入れ子の箱
ユーザー cympfhcympfh
提出日時 2017-06-21 21:05:04
言語 Rust
(1.77.0)
結果
TLE  
実行時間 -
コード長 2,670 bytes
コンパイル時間 903 ms
コンパイル使用メモリ 161,024 KB
実行使用メモリ 14,240 KB
最終ジャッジ日時 2024-04-10 09:56:36
合計ジャッジ時間 7,696 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 0 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
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 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#![allow(unused_imports)]
use std::io::{ self, Write };
use std::str::FromStr;
use std::cmp::{ min, max };
use std::collections::{ BinaryHeap, VecDeque };

#[allow(unused_macros)]
macro_rules! trace {
    ($var:expr) => ({
        let _ = writeln!(&mut std::io::stderr(), ">>> {} = {:?}", stringify!($var), $var);
    })
}
#[allow(unused_macros)]
macro_rules! swap { ($a:expr, $b:expr) => ({ let t = $b; $b = $a; $a = t; }) }

struct Hako(i32, i32, i32);

fn can_include(a: &Hako, b: &Hako) -> bool {
    let Hako(x1, y1, z1) = *a;
    let Hako(x2, y2, z2) = *b;
    if x1 > x2 && y1 > y2 && z1 > z2 { return true }
    if x1 > x2 && y1 > z2 && z1 > y2 { return true }
    if x1 > y2 && y1 > x2 && z1 > z2 { return true }
    if x1 > y2 && y1 > z2 && z1 > x2 { return true }
    if x1 > z2 && y1 > x2 && z1 > y2 { return true }
    if x1 > z2 && y1 > y2 && z1 > x2 { return true }
    false
}

fn main() {
    let mut sc = Scanner::new();
    let n: usize = sc.cin();
    let mut hakos = vec![];
    for _ in 0..n {
        let x: i32 = sc.cin();
        let y: i32 = sc.cin();
        let z: i32 = sc.cin();
        hakos.push(Hako(x, y, z));
    }

    let mut neigh = vec![vec![]; n];

    for i in 0..n {
        for j in 0..n {
            if can_include(&hakos[i], &hakos[j]) {
                neigh[i].push(j);
            }
        }
    }

    let mut max_length = 0;

    for root in 0..n {
        let mut s = vec![(root, 1)];
        while let Some((u, length)) = s.pop() {
            max_length = max(max_length, length);
            for &v in neigh[u].iter() {
                s.push((v, length + 1));
            }
        }
    }

    println!("{}", max_length);

}

#[allow(dead_code)]
struct Scanner { stdin: io::Stdin, buffer: VecDeque<String>, }
#[allow(dead_code)]
impl Scanner {
    fn new() -> Scanner { Scanner { stdin: io::stdin(), buffer: VecDeque::new() } }
    fn reserve(&mut self) {
        while self.buffer.len() == 0 {
            let mut line = String::new();
            let _ = self.stdin.read_line(&mut line);
            for w in line.split_whitespace() {
                self.buffer.push_back(String::from(w));
            }
        }
    }
    fn cin<T: FromStr>(&mut self) -> T {
        self.reserve();
        match self.buffer.pop_front().unwrap().parse::<T>() {
            Ok(a) => a,
            Err(_) => panic!("parse err")
        }
    }
    fn get_char(&mut self) -> char {
        self.reserve();
        let head = self.buffer[0].chars().nth(0).unwrap();
        let tail = String::from( &self.buffer[0][1..] );
        if tail.len()>0 { self.buffer[0]=tail } else { self.buffer.pop_front(); }
        head
    }
}
0