結果

問題 No.1460 Max of Min
ユーザー akakimidoriakakimidori
提出日時 2021-04-03 05:24:53
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 244 ms / 2,000 ms
コード長 1,826 bytes
コンパイル時間 11,751 ms
コンパイル使用メモリ 379,248 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-06 13:46:57
合計ジャッジ時間 19,522 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 219 ms
5,376 KB
testcase_04 AC 219 ms
5,376 KB
testcase_05 AC 0 ms
5,376 KB
testcase_06 AC 220 ms
5,376 KB
testcase_07 AC 218 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 244 ms
5,376 KB
testcase_11 AC 219 ms
5,376 KB
testcase_12 AC 20 ms
5,376 KB
testcase_13 AC 84 ms
5,376 KB
testcase_14 AC 30 ms
5,376 KB
testcase_15 AC 14 ms
5,376 KB
testcase_16 AC 73 ms
5,376 KB
testcase_17 AC 38 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 41 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 6 ms
5,376 KB
testcase_22 AC 43 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 46 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 86 ms
5,376 KB
testcase_27 AC 15 ms
5,376 KB
testcase_28 AC 5 ms
5,376 KB
testcase_29 AC 47 ms
5,376 KB
testcase_30 AC 66 ms
5,376 KB
testcase_31 AC 41 ms
5,376 KB
testcase_32 AC 12 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 9 ms
5,376 KB
testcase_35 AC 3 ms
5,376 KB
testcase_36 AC 1 ms
5,376 KB
testcase_37 AC 7 ms
5,376 KB
testcase_38 AC 5 ms
5,376 KB
testcase_39 AC 6 ms
5,376 KB
testcase_40 AC 5 ms
5,376 KB
testcase_41 AC 4 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 17 ms
5,376 KB
testcase_44 AC 33 ms
5,376 KB
testcase_45 AC 1 ms
5,376 KB
testcase_46 AC 13 ms
5,376 KB
testcase_47 AC 16 ms
5,376 KB
testcase_48 AC 37 ms
5,376 KB
testcase_49 AC 27 ms
5,376 KB
testcase_50 AC 2 ms
5,376 KB
testcase_51 AC 18 ms
5,376 KB
testcase_52 AC 6 ms
5,376 KB
testcase_53 AC 6 ms
5,376 KB
testcase_54 AC 8 ms
5,376 KB
testcase_55 AC 37 ms
5,376 KB
testcase_56 AC 7 ms
5,376 KB
testcase_57 AC 32 ms
5,376 KB
testcase_58 AC 219 ms
5,376 KB
testcase_59 AC 24 ms
5,376 KB
testcase_60 AC 30 ms
5,376 KB
testcase_61 AC 10 ms
5,376 KB
testcase_62 AC 10 ms
5,376 KB
testcase_63 AC 1 ms
5,376 KB
testcase_64 AC 1 ms
5,376 KB
testcase_65 AC 45 ms
5,376 KB
testcase_66 AC 9 ms
5,376 KB
testcase_67 AC 4 ms
5,376 KB
testcase_68 AC 31 ms
5,376 KB
testcase_69 AC 26 ms
5,376 KB
testcase_70 AC 18 ms
5,376 KB
testcase_71 AC 42 ms
5,376 KB
testcase_72 AC 9 ms
5,376 KB
testcase_73 AC 8 ms
5,376 KB
testcase_74 AC 8 ms
5,376 KB
testcase_75 AC 7 ms
5,376 KB
testcase_76 AC 6 ms
5,376 KB
testcase_77 AC 7 ms
5,376 KB
testcase_78 AC 5 ms
5,376 KB
testcase_79 AC 8 ms
5,376 KB
testcase_80 AC 6 ms
5,376 KB
testcase_81 AC 5 ms
5,376 KB
testcase_82 AC 6 ms
5,376 KB
testcase_83 AC 5 ms
5,376 KB
testcase_84 AC 222 ms
5,376 KB
testcase_85 AC 216 ms
5,376 KB
testcase_86 AC 228 ms
5,376 KB
testcase_87 AC 208 ms
5,376 KB
testcase_88 AC 216 ms
5,376 KB
testcase_89 AC 223 ms
5,376 KB
testcase_90 AC 206 ms
5,376 KB
testcase_91 AC 214 ms
5,376 KB
testcase_92 AC 243 ms
5,376 KB
testcase_93 AC 228 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn read() -> (usize, Vec<i64>, Vec<i64>) {
    let mut s = String::new();
    use std::io::Read;
    std::io::stdin().read_to_string(&mut s).unwrap();
    let mut it = s.trim().split_whitespace();
    let mut next = || it.next().unwrap().parse::<i64>().unwrap();
    let k = next() as usize;
    let n = next() as usize;
    let a = (0..k).map(|_| next()).collect::<Vec<_>>();
    let b = (0..k).map(|_| next()).collect::<Vec<_>>();
    (n, a, b)
}

pub fn kitamasa<T, F, G>(a: &[T], b: &[T], mut n: usize, zero: T, one: T, add: F, mul: G) -> T
where
    T: Clone,
    F: Fn(&T, &T) -> T,
    G: Fn(&T, &T) -> T,
{
    assert!(a.len() == b.len() && a.len() > 0);
    let k = a.len();
    let calc = |x: &[T], y: &[T]| -> Vec<T> {
        let mut z = vec![zero.clone(); x.len() + y.len() - 1];
        for (i, x) in x.iter().enumerate() {
            for (z, y) in z[i..].iter_mut().zip(y.iter()) {
                *z = add(z, &mul(x, y));
            }
        }
        for i in (k..z.len()).rev() {
            let p = z.pop().unwrap();
            for (z, b) in z[(i - k)..].iter_mut().zip(b.iter()) {
                *z = add(z, &mul(&p, b));
            }
        }
        z
    };
    let mut t = vec![zero.clone()];
    let mut s = vec![zero.clone()];
    t[0] = one.clone();
    if k > 1 {
        s.push(one);
    } else {
        s[0] = b[0].clone();
    }
    while n > 0 {
        if n & 1 == 1 {
            t = calc(&t, &s);
        }
        s = calc(&s, &s);
        n >>= 1;
    }
    let mut ans = zero;
    for (t, a) in t.iter().zip(a.iter()) {
        ans = add(&ans, &mul(t, a));
    }
    ans
}

fn main() {
    let (n, a, b) = read();
    let inf = 10i64.pow(18) + 1;
    let ans = kitamasa(&a, &b, n, -inf, inf, |a, b| std::cmp::max(*a, *b), |a, b| std::cmp::min(*a, *b));
    println!("{}", ans);
}
0