結果

問題 No.1095 Smallest Kadomatsu Subsequence
ユーザー phsplsphspls
提出日時 2020-06-30 23:53:25
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 16 ms / 2,000 ms
コード長 1,949 bytes
コンパイル時間 17,808 ms
コンパイル使用メモリ 387,804 KB
実行使用メモリ 8,448 KB
最終ジャッジ日時 2024-09-13 14:44:28
合計ジャッジ時間 17,302 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 1 ms
6,944 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 1 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 16 ms
8,448 KB
testcase_24 AC 16 ms
8,448 KB
testcase_25 AC 16 ms
8,448 KB
testcase_26 AC 16 ms
8,448 KB
testcase_27 AC 16 ms
8,448 KB
testcase_28 AC 15 ms
8,320 KB
testcase_29 AC 15 ms
8,448 KB
testcase_30 AC 15 ms
8,448 KB
testcase_31 AC 16 ms
8,448 KB
testcase_32 AC 16 ms
8,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::cmp::{min};

fn is_kadomatsu(a: usize, b: usize, c: usize) -> bool {
       (a > b && c > b)
    || (a < b && c < b)
}

//TODO
fn main() {
    let mut n = String::new();
    std::io::stdin().read_line(&mut n).ok();
    let n: usize = n.trim().parse().unwrap();
    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 mut result: Option<usize> = None;
    let mindata = a.iter().enumerate().min_by_key(|pair| *pair.1).unwrap();
    //bがmin
    let left: Option<_> = a.iter().take(mindata.0).min();
    let right: Option<_> = a.iter().skip(mindata.0+1).min();
    if left.is_some() && right.is_some() {
        result = Some(left.unwrap() + mindata.1 + right.unwrap());
    }
    //a, cがmin
    let mut temp: usize = a[0];
    let mut leftmin: Vec<usize> = vec![0; n];
    let mut rightmin: Vec<usize> = vec![0; n];
    a.iter().enumerate().for_each(|pair| { temp = min(temp, *pair.1); leftmin[pair.0] = temp; });
    temp = a[n-1];
    a.iter().enumerate().rev().for_each(|pair| { temp = min(temp, *pair.1); rightmin[pair.0] = temp; });
    a.iter().take(mindata.0).enumerate().for_each(|pair| {
        if pair.0 > 0 && is_kadomatsu(leftmin[pair.0-1], *pair.1, *mindata.1) {
            let val = leftmin[pair.0-1] + *pair.1 + mindata.1;
            if result.is_none() || result.unwrap() > val {
                result = Some(val);
            }
        }
    });
    a.iter().enumerate().skip(mindata.0+1).for_each(|pair| {
        if pair.0 < n-1 && is_kadomatsu(*mindata.1, *pair.1, rightmin[pair.0+1]) {
            let val = mindata.1 + *pair.1 + rightmin[pair.0+1];
            if result.is_none() || result.unwrap() > val {
                result = Some(val);
            }
        }
    });

    if result.is_some() {
        println!("{}", result.unwrap());
    } else {
        println!("{}", -1);
    }
}
0