結果

問題 No.2218 Multiple LIS
ユーザー koba-e964koba-e964
提出日時 2023-02-17 21:49:12
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 88 ms / 3,000 ms
コード長 1,429 bytes
コンパイル時間 13,008 ms
コンパイル使用メモリ 380,436 KB
実行使用メモリ 20,096 KB
最終ジャッジ日時 2024-07-19 13:01:48
合計ジャッジ時間 17,463 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
18,560 KB
testcase_01 AC 76 ms
18,560 KB
testcase_02 AC 74 ms
18,688 KB
testcase_03 AC 68 ms
18,728 KB
testcase_04 AC 70 ms
18,688 KB
testcase_05 AC 62 ms
18,688 KB
testcase_06 AC 67 ms
18,560 KB
testcase_07 AC 67 ms
18,944 KB
testcase_08 AC 73 ms
18,688 KB
testcase_09 AC 73 ms
18,688 KB
testcase_10 AC 71 ms
18,688 KB
testcase_11 AC 68 ms
18,688 KB
testcase_12 AC 74 ms
18,688 KB
testcase_13 AC 65 ms
18,688 KB
testcase_14 AC 67 ms
18,816 KB
testcase_15 AC 64 ms
18,816 KB
testcase_16 AC 60 ms
18,816 KB
testcase_17 AC 72 ms
18,816 KB
testcase_18 AC 75 ms
18,688 KB
testcase_19 AC 68 ms
18,688 KB
testcase_20 AC 58 ms
18,688 KB
testcase_21 AC 68 ms
19,328 KB
testcase_22 AC 75 ms
19,456 KB
testcase_23 AC 81 ms
19,712 KB
testcase_24 AC 69 ms
19,200 KB
testcase_25 AC 76 ms
19,712 KB
testcase_26 AC 79 ms
19,840 KB
testcase_27 AC 84 ms
19,968 KB
testcase_28 AC 83 ms
20,096 KB
testcase_29 AC 86 ms
19,968 KB
testcase_30 AC 88 ms
19,968 KB
testcase_31 AC 81 ms
19,712 KB
testcase_32 AC 82 ms
19,584 KB
testcase_33 AC 80 ms
19,584 KB
testcase_34 AC 76 ms
19,584 KB
testcase_35 AC 81 ms
19,584 KB
testcase_36 AC 76 ms
19,584 KB
testcase_37 AC 81 ms
19,712 KB
testcase_38 AC 71 ms
18,688 KB
testcase_39 AC 74 ms
18,688 KB
testcase_40 AC 84 ms
19,584 KB
testcase_41 AC 79 ms
19,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::cmp::*;
// https://qiita.com/tanakh/items/0ba42c7ca36cd29d0ac8
macro_rules! input {
    ($($r:tt)*) => {
        let stdin = std::io::stdin();
        let mut bytes = std::io::Read::bytes(std::io::BufReader::new(stdin.lock()));
        let mut next = move || -> String{
            bytes.by_ref().map(|r|r.unwrap() as char)
                .skip_while(|c|c.is_whitespace())
                .take_while(|c|!c.is_whitespace())
                .collect()
        };
        input_inner!{next, $($r)*}
    };
}

macro_rules! input_inner {
    ($next:expr) => {};
    ($next:expr,) => {};
    ($next:expr, $var:ident : $t:tt $($r:tt)*) => {
        let $var = read_value!($next, $t);
        input_inner!{$next $($r)*}
    };
}

macro_rules! read_value {
    ($next:expr, [ $t:tt ; $len:expr ]) => {
        (0..$len).map(|_| read_value!($next, $t)).collect::<Vec<_>>()
    };
    ($next:expr, $t:ty) => ($next().parse::<$t>().expect("Parse error"));
}

fn main() {
    input! {
        n: usize,
        a: [usize; n],
    }
    const W: usize = 100_001;
    let mut divs = vec![vec![]; W];
    for i in 1..W {
        for j in 1..=(W - 1) / i {
            divs[i * j].push(i);
        }
    }
    let mut dp = vec![0; W];
    for i in 0..n {
        let mut ma = 0;
        for &d in &divs[a[i]] {
            ma = max(ma, dp[d]);
        }
        dp[a[i]] = ma + 1;
    }
    println!("{}", dp.iter().max().unwrap());
}
0