結果

問題 No.2221 Set X
コンテスト
ユーザー koba-e964
提出日時 2023-02-18 10:08:20
言語 Rust
(1.94.0 + proconio + num + itertools)
コンパイル:
/usr/bin/rustc_custom
実行:
./target/release/main
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 2,279 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 681 ms
コンパイル使用メモリ 206,156 KB
実行使用メモリ 214,128 KB
最終ジャッジ日時 2026-04-02 18:33:28
合計ジャッジ時間 3,403 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 40
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: method `upper_bound` is never used
  --> src/main.rs:35:8
   |
33 | trait Bisect<T> {
   |       ------ method in this trait
34 |     fn lower_bound(&self, val: &T) -> usize;
35 |     fn upper_bound(&self, val: &T) -> usize;
   |        ^^^^^^^^^^^
   |
   = note: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default

ソースコード

diff #
raw source code

use std::cmp::*;
// https://qiita.com/tanakh/items/0ba42c7ca36cd29d0ac8
macro_rules! input {
    ($($r:tt)*) => {
        let stdin = std::io::stdin();
        let mut bytes = std::io::Read::bytes(std::io::BufReader::new(stdin.lock()));
        let mut next = move || -> String{
            bytes.by_ref().map(|r|r.unwrap() as char)
                .skip_while(|c|c.is_whitespace())
                .take_while(|c|!c.is_whitespace())
                .collect()
        };
        input_inner!{next, $($r)*}
    };
}

macro_rules! input_inner {
    ($next:expr) => {};
    ($next:expr,) => {};
    ($next:expr, $var:ident : $t:tt $($r:tt)*) => {
        let $var = read_value!($next, $t);
        input_inner!{$next $($r)*}
    };
}

macro_rules! read_value {
    ($next:expr, [ $t:tt ; $len:expr ]) => {
        (0..$len).map(|_| read_value!($next, $t)).collect::<Vec<_>>()
    };
    ($next:expr, $t:ty) => ($next().parse::<$t>().expect("Parse error"));
}

trait Bisect<T> {
    fn lower_bound(&self, val: &T) -> usize;
    fn upper_bound(&self, val: &T) -> usize;
}

impl<T: Ord> Bisect<T> for [T] {
    fn lower_bound(&self, val: &T) -> usize {
        let mut pass = self.len() + 1;
        let mut fail = 0;
        while pass - fail > 1 {
            let mid = (pass + fail) / 2;
            if &self[mid - 1] >= val {
                pass = mid;
            } else {
                fail = mid;
            }
        }
        pass - 1
    }
    fn upper_bound(&self, val: &T) -> usize {
        let mut pass = self.len() + 1;
        let mut fail = 0;
        while pass - fail > 1 {
            let mid = (pass + fail) / 2;
            if &self[mid - 1] > val {
                pass = mid;
            } else {
                fail = mid;
            }
        }
        pass - 1
    }
}

// Solved with hints
fn main() {
    input! {
        n: usize,
        a: [usize; n],
    }
    let mut ans = (2 * n, 1);
    for x in 2..2 * n - 1 {
        let lim = (ans.0 - 1) / x;
        let mut cnt = 0;
        let mut cur = 0;
        while cnt <= lim && cur < n {
            let idx = a.lower_bound(&((a[cur] / x + 1) * x));
            cur = idx;
            cnt += 1;
        }
        ans = min(ans, (cnt * (x + 1), x));
    }
    println!("{}\n{}", ans.1, ans.0);
}
0