結果

問題 No.2934 Digit Sum
ユーザー tnodinotnodino
提出日時 2024-10-03 06:13:55
言語 Rust
(1.77.0 + proconio)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,317 bytes
コンパイル時間 13,164 ms
コンパイル使用メモリ 378,064 KB
実行使用メモリ 816,640 KB
最終ジャッジ日時 2024-10-12 07:57:54
合計ジャッジ時間 23,394 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 162 ms
76,928 KB
testcase_01 AC 1,303 ms
311,296 KB
testcase_02 AC 130 ms
61,244 KB
testcase_03 AC 205 ms
92,672 KB
testcase_04 AC 364 ms
123,904 KB
testcase_05 AC 367 ms
123,904 KB
testcase_06 AC 361 ms
123,904 KB
testcase_07 AC 1,509 ms
358,144 KB
testcase_08 AC 1,857 ms
436,352 KB
testcase_09 AC 128 ms
66,816 KB
testcase_10 AC 140 ms
66,816 KB
testcase_11 AC 210 ms
93,184 KB
testcase_12 MLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

use proconio::input;
use proconio::fastout;
use std::cmp::min;

const INF: usize = 1_000_000_000_000_000_001;

#[fastout]
#[allow(non_snake_case)]
fn main() {
    input! {
        (mut N, mut K): (usize, usize),
    }
    N = min(170, N);
    let M = 100_000;
    K += 1;
    let mut DP = vec![vec![vec![0; N+1]; 10]; M+1];
    DP[0][0][0] = 1;
    for i in 0..M {
        for j in 0..=9 {
            for k in 0..=N {
                for l in 0..=9 {
                    if k + l <= N {
                        DP[i+1][l][k+l] = min(INF, DP[i+1][l][k+l] + DP[i][j][k]);
                    }
                }
            }
        }
    }
    for i in 0..=M {
        for j in 0..=9 {
            for k in 0..N {
                DP[i][j][k+1] = min(DP[i][j][k] + DP[i][j][k+1], INF);
            }
        }
    }
    let mut idx = N;
    let mut ans = Vec::new();
    for i in (1..=M).rev() {
        for j in 0..=9 {
            if DP[i][j][idx] < K {
                K -= DP[i][j][idx];
            }
            else {
                ans.push(j);
                idx -= j;
                break;
            }
        }
    }
    for i in 0..M {
        if ans[i] != 0 {
            println!("{}", ans[i..].iter().map(|&x| x.to_string()).collect::<Vec<String>>().join(""));
            break;
        }
    }
}
0