結果

問題 No.1460 Max of Min
ユーザー akakimidoriakakimidori
提出日時 2021-04-02 02:59:52
言語 Rust
(1.77.0)
結果
WA  
実行時間 -
コード長 2,633 bytes
コンパイル時間 2,737 ms
コンパイル使用メモリ 152,704 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-08-23 10:39:51
合計ジャッジ時間 13,476 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 42 ms
4,376 KB
testcase_04 AC 370 ms
4,376 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 61 ms
4,380 KB
testcase_07 AC 326 ms
4,376 KB
testcase_08 AC 1 ms
4,376 KB
testcase_09 AC 1 ms
4,380 KB
testcase_10 AC 314 ms
4,376 KB
testcase_11 AC 173 ms
4,380 KB
testcase_12 AC 27 ms
4,376 KB
testcase_13 AC 151 ms
4,380 KB
testcase_14 AC 53 ms
4,376 KB
testcase_15 AC 20 ms
4,380 KB
testcase_16 AC 123 ms
4,380 KB
testcase_17 WA -
testcase_18 AC 2 ms
4,376 KB
testcase_19 AC 68 ms
4,380 KB
testcase_20 WA -
testcase_21 AC 9 ms
4,380 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 73 ms
4,380 KB
testcase_25 AC 3 ms
4,376 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 115 ms
4,380 KB
testcase_31 AC 64 ms
4,380 KB
testcase_32 AC 168 ms
4,380 KB
testcase_33 AC 9 ms
4,376 KB
testcase_34 WA -
testcase_35 AC 21 ms
4,376 KB
testcase_36 AC 1 ms
4,376 KB
testcase_37 AC 69 ms
4,380 KB
testcase_38 AC 29 ms
4,376 KB
testcase_39 AC 61 ms
4,376 KB
testcase_40 WA -
testcase_41 AC 20 ms
4,376 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 161 ms
4,380 KB
testcase_45 AC 5 ms
4,376 KB
testcase_46 WA -
testcase_47 AC 60 ms
4,380 KB
testcase_48 WA -
testcase_49 AC 93 ms
4,380 KB
testcase_50 AC 6 ms
4,380 KB
testcase_51 WA -
testcase_52 AC 23 ms
4,376 KB
testcase_53 AC 83 ms
4,376 KB
testcase_54 AC 212 ms
4,376 KB
testcase_55 AC 209 ms
4,376 KB
testcase_56 AC 35 ms
4,380 KB
testcase_57 AC 181 ms
4,376 KB
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 AC 208 ms
4,376 KB
testcase_62 AC 207 ms
4,376 KB
testcase_63 AC 1 ms
4,376 KB
testcase_64 AC 1 ms
4,376 KB
testcase_65 AC 131 ms
4,376 KB
testcase_66 AC 212 ms
4,380 KB
testcase_67 AC 23 ms
4,376 KB
testcase_68 AC 140 ms
4,376 KB
testcase_69 WA -
testcase_70 WA -
testcase_71 WA -
testcase_72 AC 144 ms
4,380 KB
testcase_73 AC 208 ms
4,376 KB
testcase_74 AC 39 ms
4,380 KB
testcase_75 AC 36 ms
4,376 KB
testcase_76 AC 38 ms
4,376 KB
testcase_77 AC 36 ms
4,380 KB
testcase_78 AC 29 ms
4,380 KB
testcase_79 AC 35 ms
4,376 KB
testcase_80 AC 27 ms
4,380 KB
testcase_81 AC 28 ms
4,380 KB
testcase_82 AC 34 ms
4,380 KB
testcase_83 AC 25 ms
4,380 KB
testcase_84 WA -
testcase_85 WA -
testcase_86 WA -
testcase_87 WA -
testcase_88 WA -
testcase_89 WA -
testcase_90 WA -
testcase_91 WA -
testcase_92 WA -
testcase_93 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

// ---------- begin chmin, chmax ----------
pub trait ChangeMinMax {
    fn chmin(&mut self, x: Self) -> bool;
    fn chmax(&mut self, x: Self) -> bool;
}

impl<T: PartialOrd> ChangeMinMax for T {
    fn chmin(&mut self, x: Self) -> bool {
        *self > x && {
            *self = x;
            true
        }
    }
    fn chmax(&mut self, x: Self) -> bool {
        *self < x && {
            *self = x;
            true
        }
    }
}
// ---------- end chmin, chmax ----------

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)
}

const INF: i64 = 1_000_000_000_000_000_000 + 1;

fn solve(n: usize, a: &[i64], b: &[i64]) -> i64 {
    if n < a.len() {
        return a[n];
    }
    let k = a.len();
    let mut ok = -INF;
    let mut ng = INF;
    while ng - ok > 1 {
        let mid = (ok + ng) / 2;
        let a = a.iter().map(|a| *a >= mid).collect::<Vec<_>>();
        let b = b.iter().map(|a| *a >= mid).collect::<Vec<_>>();
        let mut c = vec![false; 2 * k];
        c[..k].copy_from_slice(&a);
        for i in 0..k {
            c[i + k] = c[i..].iter().zip(b.iter()).any(|p| *p.0 && *p.1);
        }
        if n < 2 * k {
            if c[n] {
                ok = mid;
            } else {
                ng = mid;
            }
            continue;
        }
        if c[k..].iter().all(|p| !*p) {
            ng = mid;
            continue;
        }
        let len = c.iter().rposition(|c| *c).unwrap() + 1 - k;
        let mut dp = vec![n + 1; len];
        for (i, c) in c[k..].iter().enumerate() {
            if *c {
                dp[i] = k + i;
            }
        }
        let mut used = vec![false; len];
        for _ in 1..len {
            let x = (0..len).filter(|p| !used[*p]).min_by_key(|p| dp[*p]).unwrap();
            used[x] = true;
            let v = dp[x];
            for (i, c) in b.iter().enumerate() {
                if *c {
                    dp[(x + k - i) % len].chmin(v + k - i);
                }
            }
        }
        if dp[(n - k) % len] <= n {
            ok = mid;
        } else {
            ng = mid;
        }
    }
    ok
}

fn run() {
    let (n, a, b) = read();
    let ans = solve(n, &a, &b);
    println!("{}", ans);
}

fn main() {
    run();
}
0