結果

問題 No.2970 三次関数の絶対値
ユーザー Yukino DX.Yukino DX.
提出日時 2024-12-06 22:55:19
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 1,164 bytes
コンパイル時間 11,214 ms
コンパイル使用メモリ 403,788 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-12-06 22:55:36
合計ジャッジ時間 12,955 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 0 ms
5,248 KB
testcase_05 WA -
testcase_06 AC 1 ms
5,248 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 1 ms
5,248 KB
testcase_12 WA -
testcase_13 AC 1 ms
5,248 KB
testcase_14 AC 1 ms
5,248 KB
testcase_15 WA -
testcase_16 AC 1 ms
5,248 KB
testcase_17 WA -
testcase_18 AC 0 ms
5,248 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 0 ms
5,248 KB
testcase_22 WA -
testcase_23 AC 1 ms
5,248 KB
testcase_24 AC 1 ms
5,248 KB
testcase_25 AC 1 ms
5,248 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 1 ms
5,248 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 1 ms
5,248 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 1 ms
5,248 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 1 ms
5,248 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 1 ms
5,248 KB
testcase_48 WA -
testcase_49 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

use proconio::input;

fn main() {
    input! {
        c:[i32;4],
        l:f64,
        r:f64,
    }

    let ans = if c[3] != 0 {
        solve3(&c, l, r)
    } else if c[2] != 0 {
        solve2(&c, l, r)
    } else if c[1] != 0 {
        solve1(&c, l, r)
    } else {
        0.0
    };

    println!("{}", ans);
}

fn solve3(c: &Vec<i32>, l: f64, r: f64) -> f64 {
    let mut ans = f(l, &c).abs().min(f(r, &c).abs());
    let d = c[2] * c[2] - 3 * c[1] * c[3];

    if d >= 0 {
        let x_0 = (-c[2] as f64 + (d as f64).sqrt()) / (3.0 * c[3] as f64);
        ans = ans.min(f(x_0, &c).abs());

        let x_1 = (-c[2] as f64 - (d as f64).sqrt()) / (3.0 * c[3] as f64);
        ans = ans.min(f(x_1, &c).abs());
    }

    ans
}

fn solve2(c: &Vec<i32>, l: f64, r: f64) -> f64 {
    let mut ans = f(l, &c).abs().min(f(r, &c).abs());
    let x = -c[1] as f64 / (2.0 * c[2] as f64);
    ans = ans.min(f(x, &c).abs());

    ans
}

fn solve1(c: &Vec<i32>, l: f64, r: f64) -> f64 {
    let ans = f(l, &c).abs().min(f(r, &c).abs());
    ans
}

fn f(x: f64, c: &Vec<i32>) -> f64 {
    c[0] as f64 + c[1] as f64 * x + c[2] as f64 * x * x + c[3] as f64 * x * x * x
}
0