結果

問題 No.1460 Max of Min
ユーザー akakimidoriakakimidori
提出日時 2021-04-02 02:44:31
言語 Rust
(1.77.0)
結果
WA  
実行時間 -
コード長 2,620 bytes
コンパイル時間 3,173 ms
コンパイル使用メモリ 149,704 KB
実行使用メモリ 4,500 KB
最終ジャッジ日時 2023-08-23 10:08:19
合計ジャッジ時間 18,914 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 224 ms
4,376 KB
testcase_04 AC 336 ms
4,380 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 220 ms
4,376 KB
testcase_07 AC 310 ms
4,376 KB
testcase_08 AC 1 ms
4,380 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 260 ms
4,380 KB
testcase_12 AC 49 ms
4,380 KB
testcase_13 WA -
testcase_14 AC 77 ms
4,376 KB
testcase_15 AC 35 ms
4,380 KB
testcase_16 AC 200 ms
4,380 KB
testcase_17 AC 120 ms
4,376 KB
testcase_18 AC 4 ms
4,380 KB
testcase_19 AC 104 ms
4,376 KB
testcase_20 WA -
testcase_21 AC 16 ms
4,376 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 3 ms
4,376 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 12 ms
4,380 KB
testcase_29 WA -
testcase_30 AC 207 ms
4,380 KB
testcase_31 AC 112 ms
4,376 KB
testcase_32 AC 188 ms
4,380 KB
testcase_33 AC 14 ms
4,376 KB
testcase_34 AC 98 ms
4,376 KB
testcase_35 AC 35 ms
4,376 KB
testcase_36 AC 1 ms
4,376 KB
testcase_37 AC 122 ms
4,376 KB
testcase_38 AC 48 ms
4,380 KB
testcase_39 AC 72 ms
4,376 KB
testcase_40 WA -
testcase_41 AC 36 ms
4,380 KB
testcase_42 AC 22 ms
4,380 KB
testcase_43 WA -
testcase_44 AC 178 ms
4,380 KB
testcase_45 AC 7 ms
4,380 KB
testcase_46 WA -
testcase_47 AC 106 ms
4,380 KB
testcase_48 WA -
testcase_49 AC 142 ms
4,376 KB
testcase_50 AC 10 ms
4,376 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 126 ms
4,376 KB
testcase_54 AC 231 ms
4,380 KB
testcase_55 WA -
testcase_56 AC 58 ms
4,380 KB
testcase_57 AC 227 ms
4,376 KB
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 AC 232 ms
4,380 KB
testcase_62 AC 231 ms
4,380 KB
testcase_63 AC 1 ms
4,376 KB
testcase_64 AC 1 ms
4,376 KB
testcase_65 AC 229 ms
4,380 KB
testcase_66 AC 231 ms
4,376 KB
testcase_67 AC 37 ms
4,376 KB
testcase_68 AC 227 ms
4,380 KB
testcase_69 WA -
testcase_70 AC 233 ms
4,380 KB
testcase_71 WA -
testcase_72 AC 220 ms
4,380 KB
testcase_73 AC 225 ms
4,376 KB
testcase_74 AC 66 ms
4,376 KB
testcase_75 AC 58 ms
4,380 KB
testcase_76 AC 66 ms
4,376 KB
testcase_77 AC 64 ms
4,376 KB
testcase_78 AC 48 ms
4,380 KB
testcase_79 AC 62 ms
4,376 KB
testcase_80 AC 44 ms
4,376 KB
testcase_81 AC 47 ms
4,376 KB
testcase_82 AC 63 ms
4,376 KB
testcase_83 AC 41 ms
4,380 KB
testcase_84 AC 273 ms
4,376 KB
testcase_85 AC 264 ms
4,380 KB
testcase_86 AC 271 ms
4,376 KB
testcase_87 AC 272 ms
4,376 KB
testcase_88 AC 272 ms
4,380 KB
testcase_89 AC 274 ms
4,376 KB
testcase_90 AC 267 ms
4,384 KB
testcase_91 AC 278 ms
4,376 KB
testcase_92 AC 279 ms
4,380 KB
testcase_93 AC 268 ms
4,376 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 {
                can |= dp[(n - k - i) % (k - i)] <= 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