結果

問題 No.497 入れ子の箱
ユーザー tanzakutanzaku
提出日時 2017-03-24 23:09:40
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 586 ms / 5,000 ms
コード長 2,611 bytes
コンパイル時間 10,565 ms
コンパイル使用メモリ 378,832 KB
実行使用メモリ 7,168 KB
最終ジャッジ日時 2024-07-05 23:32:09
合計ジャッジ時間 23,110 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 566 ms
7,168 KB
testcase_04 AC 566 ms
7,168 KB
testcase_05 AC 579 ms
7,168 KB
testcase_06 AC 568 ms
7,168 KB
testcase_07 AC 580 ms
7,168 KB
testcase_08 AC 581 ms
7,168 KB
testcase_09 AC 586 ms
7,168 KB
testcase_10 AC 578 ms
7,168 KB
testcase_11 AC 576 ms
7,168 KB
testcase_12 AC 361 ms
5,376 KB
testcase_13 AC 353 ms
5,376 KB
testcase_14 AC 350 ms
5,376 KB
testcase_15 AC 359 ms
5,376 KB
testcase_16 AC 360 ms
5,376 KB
testcase_17 AC 349 ms
5,376 KB
testcase_18 AC 549 ms
7,168 KB
testcase_19 AC 549 ms
7,168 KB
testcase_20 AC 548 ms
7,168 KB
testcase_21 AC 548 ms
7,168 KB
testcase_22 AC 552 ms
7,040 KB
testcase_23 AC 12 ms
5,376 KB
testcase_24 AC 11 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 435 ms
5,888 KB
testcase_28 AC 429 ms
5,760 KB
testcase_29 AC 427 ms
5,632 KB
testcase_30 AC 79 ms
5,376 KB
testcase_31 AC 83 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn inside(a: &mut [usize; 3], b: &mut [usize; 3]) -> bool {
    let mut ok = true;
    for i in 0..3 {
        if a[i] == std::usize::MAX { continue; }
        ok = false;
        for j in 0..3 {
            if b[j] == std::usize::MAX { continue; }
            if a[i] < b[j] {
                let tmp = (a[i], b[j]);
                a[i] = std::usize::MAX;
                b[j] = std::usize::MAX;
                let res = inside(a, b);
                a[i] = tmp.0;
                b[j] = tmp.1;
                if res { return true; }
            }
        }
    }
    ok
}

fn main() {
    let mut scanner = Scanner::new();
    let n = scanner.next_usize();
    let mut g = vec![Vec::new(); n];

    let mut t = Vec::new();
    for i in 0..n {
        t.push([scanner.next_usize(), scanner.next_usize(), scanner.next_usize()]);
        for j in 0..i {
            let mut a = t[j];
            let mut b = t[i];
            if inside(&mut a, &mut b) { g[i].push(j) }
            if inside(&mut b, &mut a) { g[j].push(i) }
        }
    }

    let mut dp = vec![1; n];
    for _ in 0..n {
        for i in 0..n {
            for j in 0..g[i].len() {
                dp[i] = std::cmp::max(dp[i], dp[g[i][j]] + 1)
            }
        }
    }

    println!("{}", dp.iter().max().unwrap());
}


struct Scanner {
    reader: std::io::Stdin,
    tokens: std::collections::VecDeque<String>,
}

impl Scanner {
    fn new() -> Self {
        Scanner {
            reader: std::io::stdin(),
            tokens: std::collections::VecDeque::new(),
        }
    }

    fn next(&mut self) -> String {
        if self.tokens.is_empty() {
        let mut s = String::new();
            loop {
                self.reader.read_line(&mut s).ok();
                let s = s.trim();
                if s.len() != 0 {
                    for it in s.split_whitespace() {
                        self.tokens.push_back(it.into())
                    }
                    break;
                }
            }
        }
        self.tokens.pop_front().unwrap()
    }

    fn next_generics<T>(&mut self) -> T where
        T: std::str::FromStr + std::marker::Copy,
        <T as std::str::FromStr>::Err: std::fmt::Debug
    {
        self.next().parse().unwrap()
    }
    
    #[allow(dead_code)] fn next_i32(&mut self) -> i32 { self.next_generics::<i32>() }
    #[allow(dead_code)] fn next_i64(&mut self) -> i64 { self.next_generics::<i64>() }
    #[allow(dead_code)] fn next_u64(&mut self) -> u64 { self.next_generics::<u64>() }
    #[allow(dead_code)] fn next_usize(&mut self) -> usize { self.next_generics::<usize>() }
}

0