結果

問題 No.1521 Playing Musical Chairs Alone
ユーザー tentententen
提出日時 2021-07-29 20:57:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 2,129 bytes
コンパイル時間 2,668 ms
コンパイル使用メモリ 77,652 KB
実行使用メモリ 41,896 KB
最終ジャッジ日時 2024-09-14 17:26:40
合計ジャッジ時間 7,543 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
37,064 KB
testcase_01 AC 54 ms
36,552 KB
testcase_02 AC 55 ms
36,796 KB
testcase_03 AC 53 ms
36,892 KB
testcase_04 AC 53 ms
37,004 KB
testcase_05 AC 159 ms
40,980 KB
testcase_06 AC 155 ms
40,964 KB
testcase_07 AC 165 ms
41,040 KB
testcase_08 AC 115 ms
39,616 KB
testcase_09 AC 108 ms
38,500 KB
testcase_10 AC 56 ms
36,876 KB
testcase_11 AC 201 ms
41,436 KB
testcase_12 AC 55 ms
36,976 KB
testcase_13 AC 54 ms
36,848 KB
testcase_14 AC 66 ms
37,320 KB
testcase_15 AC 205 ms
41,432 KB
testcase_16 AC 223 ms
41,576 KB
testcase_17 AC 229 ms
41,896 KB
testcase_18 AC 208 ms
41,636 KB
testcase_19 AC 221 ms
41,788 KB
testcase_20 AC 224 ms
41,616 KB
testcase_21 AC 219 ms
41,560 KB
testcase_22 AC 225 ms
41,872 KB
testcase_23 AC 202 ms
41,332 KB
testcase_24 AC 227 ms
41,744 KB
testcase_25 AC 223 ms
41,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int kk = sc.nextInt();
        int ll = sc.nextInt();
        long[][][] dp = new long[20][n][n];
        for (int i = 0; i < n; i++) {
            for (int j = 1; j <= ll; j++) {
                dp[0][i][(i + j) % n] = 1;
            }
        }
        for (int i = 1; i < 20; i++) {
            for (int j = 0; j < n; j++) {
                for (int k = 0; k < n; k++) {
                    for (int l = 0; l < n; l++) {
                        dp[i][j][l] += dp[i - 1][j][k] * dp[i - 1][k][l] % MOD;
                        dp[i][j][l] %= MOD;
                    }
                }
            }
        }
        long[] current = new long[n];
        current[0] = 1;
        for (int i = 19; i >= 0 && kk > 0; i--) {
            if (kk >= (1 << i)) {
                kk -= (1 << i);
                long[] next = new long[n];
                for (int j = 0; j < n; j++) {
                    for (int k = 0; k < n; k++) {
                        next[k] += current[j] * dp[i][j][k] % MOD;
                        next[k] %= MOD;
                    }
                }
                current = next;
            }
            
        }
        StringBuilder sb = new StringBuilder();
        for (long x : current) {
            sb.append(x).append("\n");
        }
        System.out.print(sb);
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0