結果

問題 No.1862 Copy and Paste
ユーザー koba-e964koba-e964
提出日時 2022-03-06 18:30:40
言語 Rust
(1.77.0)
結果
AC  
実行時間 321 ms / 2,000 ms
コード長 4,087 bytes
コンパイル時間 1,175 ms
コンパイル使用メモリ 149,540 KB
実行使用メモリ 4,352 KB
最終ジャッジ日時 2023-10-11 10:49:10
合計ジャッジ時間 6,870 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,352 KB
testcase_01 AC 1 ms
4,348 KB
testcase_02 AC 1 ms
4,352 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 1 ms
4,348 KB
testcase_05 AC 1 ms
4,352 KB
testcase_06 AC 1 ms
4,348 KB
testcase_07 AC 1 ms
4,352 KB
testcase_08 AC 1 ms
4,352 KB
testcase_09 AC 280 ms
4,348 KB
testcase_10 AC 35 ms
4,352 KB
testcase_11 AC 296 ms
4,348 KB
testcase_12 AC 192 ms
4,348 KB
testcase_13 AC 293 ms
4,352 KB
testcase_14 AC 31 ms
4,352 KB
testcase_15 AC 166 ms
4,352 KB
testcase_16 AC 280 ms
4,348 KB
testcase_17 AC 164 ms
4,352 KB
testcase_18 AC 114 ms
4,348 KB
testcase_19 AC 293 ms
4,348 KB
testcase_20 AC 264 ms
4,348 KB
testcase_21 AC 182 ms
4,352 KB
testcase_22 AC 265 ms
4,348 KB
testcase_23 AC 266 ms
4,352 KB
testcase_24 AC 318 ms
4,352 KB
testcase_25 AC 1 ms
4,348 KB
testcase_26 AC 318 ms
4,352 KB
testcase_27 AC 321 ms
4,348 KB
testcase_28 AC 317 ms
4,348 KB
testcase_29 AC 257 ms
4,348 KB
testcase_30 AC 57 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#[allow(unused_imports)]
use std::cmp::*;
#[allow(unused_imports)]
use std::collections::*;
use std::io::Read;

#[allow(dead_code)]
fn getline() -> String {
    let mut ret = String::new();
    std::io::stdin().read_line(&mut ret).ok().unwrap();
    ret
}

fn get_word() -> String {
    let stdin = std::io::stdin();
    let mut stdin=stdin.lock();
    let mut u8b: [u8; 1] = [0];
    loop {
        let mut buf: Vec<u8> = Vec::with_capacity(16);
        loop {
            let res = stdin.read(&mut u8b);
            if res.unwrap_or(0) == 0 || u8b[0] <= b' ' {
                break;
            } else {
                buf.push(u8b[0]);
            }
        }
        if buf.len() >= 1 {
            let ret = String::from_utf8(buf).unwrap();
            return ret;
        }
    }
}

#[allow(dead_code)]
fn get<T: std::str::FromStr>() -> T { get_word().parse().ok().unwrap() }

// DP table indexed by {floor(n / i) | 1 <= i <= n}.
// Verified by: https://atcoder.jp/contests/abc239/submissions/29553511
type K = i64;
type V = i64;
struct QuoDP {
    // stores dp[n], dp[n/2], ..., dp[n/b].
    dp_big: Vec<V>,
    dp: Vec<V>,
    n: K,
    b: K,
}

impl QuoDP {
    pub fn new(n: K, b: K) -> Self {
        let dp_big = vec![0.into(); b as usize + 1];
        let dp = vec![0.into(); ((n + b - 1) / b) as usize];
        QuoDP {
            dp_big: dp_big,
            dp: dp,
            n: n,
            b: b,
        }
    }
    #[allow(unused)]
    pub fn keys(&self) -> Vec<K> {
        (1..(self.n + self.b - 1) / self.b).chain((1..=self.b).rev().map(|x| (self.n + x - 1) / x)).collect()
    }
    // pos should be of form ceil(n / ???).
    pub fn upd<F>(&mut self, pos: K, f: F) where F: Fn(V) -> V {
        if pos >= (self.n + self.b - 1) / self.b {
            let idx = (self.n + pos - 1) / pos;
            debug_assert_eq!(pos, (self.n + idx - 1) / idx);
            self.dp_big[idx as usize] = f(self.dp_big[idx as usize]);
            return;
        }
        let idx = pos as usize;
        self.dp[idx] = f(self.dp[idx]);
    }
    pub fn get(&self, pos: K) -> V {
        if pos >= (self.n + self.b - 1) / self.b {
            let idx = (self.n + pos - 1) / pos;
            debug_assert_eq!(pos, (self.n + idx - 1) / idx);
            return self.dp_big[idx as usize];
        }
        let idx = pos as usize;
        self.dp[idx]
    }
    #[allow(unused)]
    pub fn init<F>(&mut self, f: F) where F: Fn(K) -> V {
        self.upd_all(|k, _| f(k));
    }
    pub fn upd_all<F>(&mut self, f: F) where F: Fn(K, V) -> V {
        for i in 0..self.dp.len() {
            self.dp[i] = f(i as K, self.dp[i]);
        }
        for i in (1..self.dp_big.len()).rev() {
            self.dp_big[i] = f((self.n + i as K - 1) / i as K, self.dp_big[i]);
        }
    }
}

impl std::fmt::Debug for QuoDP {
    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
        for i in 0..self.dp.len() {
            writeln!(f, "{}: {}", i, self.dp[i])?;
        }
        for i in (1..self.dp_big.len()).rev() {
            writeln!(f, "{}: {}", (self.n + i as K - 1) / i as K, self.dp_big[i])?;
        }
        Ok(())
    }
}

// Tags: variant-of-lucys-sieve
// Complexity: O(n^{3/4})
fn main() {
    let a: i64 = get();
    let b: i64 = get();
    let n: i64 = get();
    let inf = a + (n - 1) * b;
    let mut sqn = 0;
    while sqn * sqn <= n {
        sqn += 1;
    }
    sqn -= 1;
    let mut dp = QuoDP::new(n, sqn);
    let keys = dp.keys();
    eprintln!("keys = {:?}", keys);
    dp.upd(1, |_| 0);
    for pos in keys {
        if pos == 1 { continue; }
        let mut x = 1;
        while x * x <= pos {
            x += 1;
        }
        x -= 1;
        let mut tmp = inf;
        // Iterate over ceil(pos / i) for 1 <= i <= pos
        for j in 2..=x {
            tmp = min(tmp, dp.get((pos + j - 1) / j) + a + (j - 1) * b);
        }
        for j in 1..pos / x {
            let l = (pos + j - 1) / j;
            tmp = min(tmp, dp.get(j) + a + (l - 1) * b);
        }
        dp.upd(pos, |_| tmp);
    }
    println!("{}", dp.get(n));
}
0