結果

問題 No.1521 Playing Musical Chairs Alone
ユーザー phsplsphspls
提出日時 2022-10-05 12:36:18
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 960 ms / 2,000 ms
コード長 1,142 bytes
コンパイル時間 12,130 ms
コンパイル使用メモリ 406,900 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-31 12:29:49
合計ジャッジ時間 23,563 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 44 ms
6,816 KB
testcase_02 AC 105 ms
6,820 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 1 ms
6,820 KB
testcase_05 AC 564 ms
6,816 KB
testcase_06 AC 71 ms
6,820 KB
testcase_07 AC 737 ms
6,820 KB
testcase_08 AC 174 ms
6,816 KB
testcase_09 AC 268 ms
6,816 KB
testcase_10 AC 23 ms
6,816 KB
testcase_11 AC 726 ms
6,820 KB
testcase_12 AC 10 ms
6,820 KB
testcase_13 AC 23 ms
6,816 KB
testcase_14 AC 76 ms
6,816 KB
testcase_15 AC 847 ms
6,820 KB
testcase_16 AC 924 ms
6,820 KB
testcase_17 AC 844 ms
6,816 KB
testcase_18 AC 912 ms
6,820 KB
testcase_19 AC 950 ms
6,820 KB
testcase_20 AC 767 ms
6,820 KB
testcase_21 AC 776 ms
6,816 KB
testcase_22 AC 450 ms
6,816 KB
testcase_23 AC 812 ms
6,820 KB
testcase_24 AC 960 ms
6,820 KB
testcase_25 AC 250 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

const MOD: usize = 1e9 as usize + 7;

fn main() {
    let mut nkl = String::new();
    std::io::stdin().read_line(&mut nkl).ok();
    let nkl: Vec<usize> = nkl.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
    let n = nkl[0];
    let k = nkl[1];
    let l = nkl[2];

    let mut dp = vec![0usize; n];
    dp[0] = 1;
    for _ in 0..k {
        let mut next_dp = vec![0usize; n];
        for j in 0..n {
            if dp[j] == 0 { continue; }
            let start = j+1;
            let end = j+l+1;
            if l == n {
                next_dp[0] += dp[j];
                continue;
            }
            let start = if start >= n { start % n } else { start };
            let end = if end >= n { end % n } else { end };
            if start > end {
                next_dp[0] += dp[j];
            }
            next_dp[start] += dp[j];
            next_dp[end] += MOD - dp[j];
        }
        next_dp[0] %= MOD;
        for j in 0..n-1 {
            next_dp[j+1] += next_dp[j];
            next_dp[j+1] %= MOD;
        }
        dp = next_dp;
    }
    for &v in dp.iter() {
        println!("{}", v);
    }
}
0