結果

問題 No.1330 Multiply or Divide
ユーザー ikdikd
提出日時 2021-01-08 22:25:54
言語 Rust
(1.83.0 + proconio)
結果
WA  
実行時間 -
コード長 2,702 bytes
コンパイル時間 15,694 ms
コンパイル使用メモリ 377,608 KB
実行使用メモリ 6,144 KB
最終ジャッジ日時 2024-11-16 13:11:27
合計ジャッジ時間 18,175 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 39 WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    let stdin = std::io::stdin();
    let mut rd = ProconReader::new(stdin.lock());

    let n: usize = rd.get();
    let m: u64 = rd.get();
    let p: u64 = rd.get();
    let a: Vec<u64> = rd.get_vec(n);

    let a: Vec<u64> = a.into_iter().filter(|&y| y != 1).collect();
    if a.is_empty() {
        println!("-1");
        return;
    }
    let max = *a.iter().max().unwrap();
    if max > m {
        println!("1");
        return;
    }
    let a: Vec<u64> = a
        .into_iter()
        .filter(|&y| {
            let mut y = y;
            while y % p == 0 {
                y /= p;
            }
            y != 1
        })
        .collect();
    if a.is_empty() {
        println!("-1");
        return;
    }
    let mut ans = std::u32::MAX;
    for y in a {
        let mut x = 1;
        let mut cnt = 0;
        while x <= m {
            if x * max > m {
                cnt += 1;
                break;
            }
            x *= y;
            cnt += 1;
        }
        ans = ans.min(cnt);
    }
    assert!(ans < std::u32::MAX);
    println!("{}", ans);
}

pub struct ProconReader<R> {
    r: R,
    line: String,
    i: usize,
}

impl<R: std::io::BufRead> ProconReader<R> {
    pub fn new(reader: R) -> Self {
        Self {
            r: reader,
            line: String::new(),
            i: 0,
        }
    }
    pub fn get<T>(&mut self) -> T
    where
        T: std::str::FromStr,
        <T as std::str::FromStr>::Err: std::fmt::Debug,
    {
        self.skip_blanks();
        assert!(self.i < self.line.len());
        assert_ne!(&self.line[self.i..=self.i], " ");
        let line = &self.line[self.i..];
        let end = line.find(' ').unwrap_or_else(|| line.len());
        let s = &line[..end];
        self.i += end;
        s.parse()
            .unwrap_or_else(|_| panic!("parse error `{}`", self.line))
    }
    fn skip_blanks(&mut self) {
        loop {
            let start = self.line[self.i..].find(|ch| ch != ' ');
            match start {
                Some(j) => {
                    self.i += j;
                    break;
                }
                None => {
                    self.line.clear();
                    self.i = 0;
                    let num_bytes = self.r.read_line(&mut self.line).unwrap();
                    assert!(num_bytes > 0, "reached EOF :(");
                    self.line = self.line.trim_end_matches(&['\r', '\n'][..]).to_string();
                }
            }
        }
    }
    pub fn get_vec<T>(&mut self, n: usize) -> Vec<T>
    where
        T: std::str::FromStr,
        <T as std::str::FromStr>::Err: std::fmt::Debug,
    {
        (0..n).map(|_| self.get()).collect()
    }
}
0