結果
問題 | No.1862 Copy and Paste |
ユーザー |
|
提出日時 | 2022-03-06 17:46:27 |
言語 | Rust (1.83.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,811 bytes |
コンパイル時間 | 24,363 ms |
コンパイル使用メモリ | 377,272 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-21 03:38:57 |
合計ジャッジ時間 | 18,584 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 3 |
other | AC * 1 WA * 26 |
ソースコード
#[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/29553511type 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) 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).chain((1..=self.b).rev().map(|x| self.n / x)).collect()}// pos should be of form floor(n / ???).pub fn upd<F>(&mut self, pos: K, f: F) where F: Fn(V) -> V {if pos >= self.n / self.b {let idx = self.n / pos;debug_assert_eq!(pos, self.n / 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 {let idx = self.n / pos;debug_assert_eq!(pos, self.n / 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, 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, self.dp_big[i])?;}Ok(())}}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();for pos in keys {let mut x = 1;while x * x <= pos {x += 1;}x -= 1;let mut tmp = inf;for j in 2..=x {tmp = min(tmp, dp.get(pos / j) + a + (j - 1) * b);}for j in max(1, pos / n)..pos / x {let l = pos / (j + 1);let r = min(n, pos / j);if l < r {tmp = min(tmp, dp.get(j) + a + l * b);}}dp.upd(pos, |_| tmp);}println!("{}", dp.get(n));}