結果
問題 |
No.390 最長の数列
|
ユーザー |
|
提出日時 | 2016-08-04 01:02:54 |
言語 | Rust (1.83.0 + proconio) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,520 bytes |
コンパイル時間 | 24,393 ms |
コンパイル使用メモリ | 397,984 KB |
実行使用メモリ | 6,912 KB |
最終ジャッジ日時 | 2024-12-30 10:15:12 |
合計ジャッジ時間 | 16,951 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 14 WA * 1 |
ソースコード
#[allow(unused_imports)] use std::cmp::*; #[allow(unused_imports)] use std::collections::*; use std::io::*; #[allow(dead_code)] fn getline() -> String { let mut ret = String::new(); std::io::stdin().read_line(&mut ret).ok(); return ret; } fn get_word() -> String { let mut stdin = std::io::stdin(); let mut u8b: [u8; 1] = [0]; loop { let mut buf: Vec<u8> = Vec::with_capacity(16); loop { let res = stdin.read(&mut u8b); if res.is_err() || res.ok().unwrap() == 0 || u8b[0] <= ' ' as u8 { break; } else { buf.push(u8b[0]); } } if buf.len() >= 1 { let ret = std::string::String::from_utf8(buf).unwrap(); return ret; } } } fn parse<T: std::str::FromStr>(s: &str) -> T { s.parse::<T>().ok().unwrap() } #[allow(dead_code)] fn get<T: std::str::FromStr>() -> T { parse(&get_word()) } const N: usize = 1_000_001; fn main() { let n: usize = get(); let x: Vec<usize> = (0 .. n).map(|_| get()).collect(); let mut tbl: Vec<bool> = (0 .. N).map(|_| false).collect(); for i in x { tbl[i] = true; } let mut dp: Vec<i32> = (0 .. N).map(|_| 0).collect(); for i in (1 .. N).rev() { if tbl[i] { dp[i] = 1; for j in 2 .. N / i { dp[i] = max(dp[i], dp[i * j] + 1); } } else { dp[i] = 0; } } println!("{}", dp.iter().max().unwrap()); }