結果

問題 No.1460 Max of Min
ユーザー akakimidoriakakimidori
提出日時 2021-04-02 02:48:05
言語 Rust
(1.77.0)
結果
WA  
実行時間 -
コード長 2,753 bytes
コンパイル時間 1,364 ms
コンパイル使用メモリ 153,720 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-08-23 10:29:48
合計ジャッジ時間 20,993 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 212 ms
4,376 KB
testcase_04 AC 948 ms
4,376 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 205 ms
4,380 KB
testcase_07 AC 792 ms
4,376 KB
testcase_08 AC 1 ms
4,376 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 379 ms
4,376 KB
testcase_12 AC 47 ms
4,380 KB
testcase_13 WA -
testcase_14 AC 72 ms
4,376 KB
testcase_15 AC 33 ms
4,376 KB
testcase_16 AC 185 ms
4,376 KB
testcase_17 AC 110 ms
4,380 KB
testcase_18 AC 4 ms
4,380 KB
testcase_19 AC 97 ms
4,376 KB
testcase_20 WA -
testcase_21 AC 15 ms
4,380 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 4 ms
4,380 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 12 ms
4,380 KB
testcase_29 WA -
testcase_30 AC 190 ms
4,380 KB
testcase_31 AC 104 ms
4,380 KB
testcase_32 AC 174 ms
4,376 KB
testcase_33 AC 9 ms
4,376 KB
testcase_34 AC 90 ms
4,380 KB
testcase_35 AC 33 ms
4,376 KB
testcase_36 AC 1 ms
4,376 KB
testcase_37 AC 113 ms
4,380 KB
testcase_38 AC 29 ms
4,376 KB
testcase_39 AC 67 ms
4,380 KB
testcase_40 AC 47 ms
4,376 KB
testcase_41 AC 34 ms
4,376 KB
testcase_42 AC 21 ms
4,376 KB
testcase_43 WA -
testcase_44 AC 164 ms
4,376 KB
testcase_45 AC 7 ms
4,376 KB
testcase_46 WA -
testcase_47 AC 98 ms
4,376 KB
testcase_48 WA -
testcase_49 AC 134 ms
4,376 KB
testcase_50 AC 9 ms
4,376 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 119 ms
4,376 KB
testcase_54 AC 218 ms
4,380 KB
testcase_55 WA -
testcase_56 AC 35 ms
4,376 KB
testcase_57 AC 211 ms
4,380 KB
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 AC 216 ms
4,376 KB
testcase_62 WA -
testcase_63 AC 1 ms
4,380 KB
testcase_64 AC 1 ms
4,380 KB
testcase_65 AC 211 ms
4,500 KB
testcase_66 AC 217 ms
4,376 KB
testcase_67 AC 23 ms
4,380 KB
testcase_68 AC 209 ms
4,376 KB
testcase_69 WA -
testcase_70 AC 217 ms
4,376 KB
testcase_71 WA -
testcase_72 AC 204 ms
4,380 KB
testcase_73 AC 215 ms
4,376 KB
testcase_74 AC 40 ms
4,380 KB
testcase_75 AC 35 ms
4,376 KB
testcase_76 AC 38 ms
4,376 KB
testcase_77 AC 36 ms
4,380 KB
testcase_78 AC 28 ms
4,380 KB
testcase_79 AC 36 ms
4,380 KB
testcase_80 AC 27 ms
4,376 KB
testcase_81 AC 29 ms
4,380 KB
testcase_82 AC 35 ms
4,376 KB
testcase_83 AC 25 ms
4,376 KB
testcase_84 AC 565 ms
4,376 KB
testcase_85 AC 556 ms
4,376 KB
testcase_86 AC 561 ms
4,380 KB
testcase_87 AC 571 ms
4,376 KB
testcase_88 AC 571 ms
4,380 KB
testcase_89 AC 570 ms
4,376 KB
testcase_90 AC 562 ms
4,380 KB
testcase_91 AC 581 ms
4,376 KB
testcase_92 AC 579 ms
4,380 KB
testcase_93 AC 553 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

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;
        }
        let mut dp = vec![n + 1; k];
        for (i, c) in c[k..].iter().enumerate() {
            if *c {
                dp[i] = k + i;
            }
        }
        let mut used = vec![false; k];
        for _ in 0..k {
            let x = (0..k).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) % k].chmin(v + k - i);
                }
            }
        }
        let mut can = false;
        for (i, c) in b.iter().enumerate() {
            if *c {
                for (j, dp) in dp.iter().enumerate() {
                    if (n - k - j) % (k - i) == 0 {
                        can |= *dp <= n;
                    }
                }
            }
        }
        if can {
            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