結果

問題 No.2099 [Cherry Alpha B] Time Machine
ユーザー phspls
提出日時 2022-10-16 05:28:14
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 1,000 bytes
コンパイル時間 13,865 ms
コンパイル使用メモリ 389,992 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-27 03:38:53
合計ジャッジ時間 22,638 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 72
権限があれば一括ダウンロードができます

ソースコード

diff #

const INF: isize = 1isize << 60;

fn main() {
    let mut t = String::new();
    std::io::stdin().read_line(&mut t).ok();
    let t: isize = t.trim().parse().unwrap(); 
    let mut xa = String::new();
    std::io::stdin().read_line(&mut xa).ok();
    let xa: Vec<isize> = xa.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
    let x = xa[0];
    let a = xa[1];
    let mut ya = String::new();
    std::io::stdin().read_line(&mut ya).ok();
    let yb: Vec<isize> = ya.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
    let y = yb[0];
    let b = yb[1];

    let mut result = INF;
    let offset = if t < 0 { t.abs() / b + if t % b != 0 { 1 } else { 0 } } else { 0 };
    let offset_dates = offset * y;
    let t = t + offset * b;
    for i in 0..=10000000 {
        let mut cost = offset_dates + i*y;
        let t = t + i*b;
        cost += t / a * x;
        let t = t % a;
        cost += t;
        result = result.min(cost);
    }
    println!("{}", result);
}
0