結果
問題 | No.1330 Multiply or Divide |
ユーザー | phspls |
提出日時 | 2022-11-18 23:23:25 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,779 bytes |
コンパイル時間 | 13,807 ms |
コンパイル使用メモリ | 386,152 KB |
実行使用メモリ | 116,444 KB |
最終ジャッジ日時 | 2024-09-20 03:53:26 |
合計ジャッジ時間 | 17,843 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
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 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
コンパイルメッセージ
warning: unused variable: `n` --> src/main.rs:14:9 | 14 | let n = nmp[0]; | ^ help: if this is intentional, prefix it with an underscore: `_n` | = note: `#[warn(unused_variables)]` on by default
ソースコード
use std::collections::HashMap; const INF: usize = 1usize << 60; fn gcd(a: usize, b: usize) -> usize { if b == 0 { return a; } gcd(b, a%b) } fn main() { let mut nmp = String::new(); std::io::stdin().read_line(&mut nmp).ok(); let nmp: Vec<usize> = nmp.trim().split_whitespace().map(|s| s.parse().unwrap()).collect(); let n = nmp[0]; let m = nmp[1]; let p = nmp[2]; let mut a = String::new(); std::io::stdin().read_line(&mut a).ok(); let a: Vec<usize> = a.trim().split_whitespace().map(|s| s.parse().unwrap()).collect(); let a = a.into_iter().filter(|&v| v % p > 0 && v > 1).collect::<Vec<_>>(); if p == 1 || a.is_empty() { println!("-1"); return; } let mut dp = HashMap::new(); dp.insert(1usize, 0usize); for &v in a.iter() { let mut next_dp = HashMap::new(); for (&val, &cnt) in dp.iter() { next_dp.insert(val, cnt); for i in 1.. { let value = v.pow(i); let lgcdval = gcd(value, p); let rgcdval = gcd(val, p); if lgcdval == p || rgcdval == p || gcd(lgcdval*rgcdval, p) == p { break; } let target = if value >= m || value * val >= m { m } else { value * val }; let minval = (*next_dp.get(&target).unwrap_or(&INF)).min(i as usize + cnt); next_dp.insert(target, minval); if target == m { break; } } } dp = next_dp; } if dp.contains_key(&m) { println!("{}", dp.get(&m).unwrap()); } else { println!("-1"); } }