結果

問題 No.2934 Digit Sum
ユーザー tnodinotnodino
提出日時 2024-10-05 05:44:03
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 219 ms / 2,000 ms
コード長 1,434 bytes
コンパイル時間 12,255 ms
コンパイル使用メモリ 402,008 KB
実行使用メモリ 93,056 KB
最終ジャッジ日時 2024-10-12 07:57:48
合計ジャッジ時間 15,142 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 166 ms
77,056 KB
testcase_01 AC 13 ms
5,248 KB
testcase_02 AC 134 ms
61,440 KB
testcase_03 AC 218 ms
92,640 KB
testcase_04 AC 38 ms
13,952 KB
testcase_05 AC 38 ms
14,080 KB
testcase_06 AC 39 ms
14,080 KB
testcase_07 AC 16 ms
5,504 KB
testcase_08 AC 20 ms
6,272 KB
testcase_09 AC 134 ms
66,816 KB
testcase_10 AC 148 ms
66,816 KB
testcase_11 AC 219 ms
93,056 KB
testcase_12 AC 59 ms
15,104 KB
testcase_13 AC 60 ms
14,976 KB
testcase_14 AC 60 ms
15,104 KB
testcase_15 AC 72 ms
18,048 KB
testcase_16 AC 72 ms
17,920 KB
testcase_17 AC 44 ms
11,904 KB
testcase_18 AC 24 ms
7,680 KB
testcase_19 AC 11 ms
5,248 KB
testcase_20 AC 51 ms
13,312 KB
testcase_21 AC 38 ms
10,368 KB
testcase_22 AC 38 ms
14,080 KB
testcase_23 AC 24 ms
11,136 KB
testcase_24 AC 27 ms
12,416 KB
testcase_25 AC 29 ms
12,544 KB
testcase_26 AC 34 ms
14,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

const INF: usize = 1_000_000_000_000_000_010;

#[fastout]
#[allow(non_snake_case)]
fn main() {
    input! {
        (mut N, mut K): (usize, usize),
    }
    N = min(200, N);
    let M;
    if N <= 5 {
        M = 100_000;
    }
    else if N <= 10 {
        M = 10_000;
    }
    else {
        M = 1_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