結果

問題 No.1521 Playing Musical Chairs Alone
ユーザー tentententen
提出日時 2024-07-23 11:33:24
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,377 bytes
コンパイル時間 2,625 ms
コンパイル使用メモリ 90,548 KB
実行使用メモリ 56,152 KB
最終ジャッジ日時 2024-07-23 11:33:33
合計ジャッジ時間 7,912 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
51,340 KB
testcase_01 AC 69 ms
51,376 KB
testcase_02 AC 71 ms
51,184 KB
testcase_03 AC 69 ms
50,996 KB
testcase_04 AC 69 ms
51,344 KB
testcase_05 WA -
testcase_06 AC 182 ms
54,076 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 68 ms
50,940 KB
testcase_13 AC 68 ms
50,964 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 243 ms
53,872 KB
testcase_23 WA -
testcase_24 AC 243 ms
53,840 KB
testcase_25 AC 240 ms
56,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

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 k = sc.nextInt();
        int m = sc.nextInt();
        long[][][] matrix = new long[20][n][n];
        for (int i = 0; i < n; i++) {
            for (int j = 1; j <= m; j++) {
                matrix[0][i][(i + j) % n]++;
            }
        }
        for (int i = 1; i < 20; i++) {
            for (int a = 0; a < n; a++) {
                for (int b = 0; b < n; b++) {
                    for (int c = 0; c < n; c++) {
                        matrix[i][a][c] += matrix[i - 1][a][b] * matrix[i - 1][b][c] % MOD;
                        matrix[i][a][c] %= MOD;
                    }
                }
            }
        }
        long[] ans = new long[n];
        ans[0] = 1;
        for (int i = 19; i >= 0; i--) {
            if (k < (1 << i)) {
                continue;
            }
            k -= (1 << i);
            long[] next = new long[n];
            for (int a = 0; a < n; a++) {
                for (int b = 0; b < n; b++) {
                    next[a] += matrix[i][a][b] * ans[b] % MOD;
                    next[a] %= MOD;
                }
            }
            ans = next;
        }
        System.out.println(Arrays.stream(ans).mapToObj(String::valueOf).collect(Collectors.joining("\n")));
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0