結果

問題 No.1521 Playing Musical Chairs Alone
ユーザー aspiaspi
提出日時 2021-05-04 10:58:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 227 ms / 2,000 ms
コード長 1,100 bytes
コンパイル時間 2,330 ms
コンパイル使用メモリ 209,264 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-05 03:04:08
合計ジャッジ時間 5,171 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 66 ms
6,816 KB
testcase_06 AC 19 ms
6,816 KB
testcase_07 AC 91 ms
6,820 KB
testcase_08 AC 7 ms
6,820 KB
testcase_09 AC 6 ms
6,820 KB
testcase_10 AC 2 ms
6,824 KB
testcase_11 AC 165 ms
6,820 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 3 ms
6,820 KB
testcase_15 AC 191 ms
6,820 KB
testcase_16 AC 227 ms
6,824 KB
testcase_17 AC 212 ms
6,820 KB
testcase_18 AC 201 ms
6,816 KB
testcase_19 AC 201 ms
6,816 KB
testcase_20 AC 192 ms
6,820 KB
testcase_21 AC 188 ms
6,820 KB
testcase_22 AC 59 ms
6,816 KB
testcase_23 AC 148 ms
6,816 KB
testcase_24 AC 180 ms
6,820 KB
testcase_25 AC 81 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#pragma GCC target("avx")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

#define rep(i,n)  for(int i=0; i<(int) (n); i++)
const long long mod = 1000000007;

vector<vector<int>> mul(vector<vector<int>>& xx, vector<vector<int>>& yy) {
    int a = xx.size(), b = yy[0].size(), c = yy.size();
    vector<vector<int>> ans(a, vector<int>(b));
    rep(i, a) {
        rep(j, b) {
            rep(k, c) {
                ans[i][j] += (long long)xx[i][k] * (long long)yy[k][j] % mod;
                if (mod <= ans[i][j])ans[i][j] -= mod;
            }
        }
    }
    return ans;
}
signed main() {
    int N, K, L;
    cin >> N >> K >> L;
    vector<vector<int>>path(N, vector<int>(N)), dp(N, vector<int>(N));
    rep(i, N) {
        for (int j = 1; j <= L; j++) {
            path[i][(i + j) % N] = 1;
        }
    }
    rep(i, N) {
        dp[i][i] = 1;
    }
    for (; K; K >>= 1) {
        if (K & 1) {
            dp= mul(dp, path);
        }
        path = mul(path, path);
    }
    rep(i,N){
        cout<<dp[0][i]<<endl;
    }
}
0