結果
問題 | No.1521 Playing Musical Chairs Alone |
ユーザー | Haa |
提出日時 | 2021-05-28 20:59:10 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,025 bytes |
コンパイル時間 | 2,126 ms |
コンパイル使用メモリ | 175,056 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-07 08:31:34 |
合計ジャッジ時間 | 4,595 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | WA | - |
testcase_06 | AC | 37 ms
6,816 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
6,816 KB |
testcase_13 | AC | 2 ms
6,816 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 | 128 ms
6,820 KB |
testcase_23 | WA | - |
testcase_24 | AC | 128 ms
6,816 KB |
testcase_25 | AC | 178 ms
6,816 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long int ll; typedef pair<ll,ll> P; typedef vector<ll> VI; typedef vector<VI> VVI; #define REP(i,n) for(ll i=0;i<(n);i++) #define ALL(v) v.begin(),v.end() constexpr ll MOD=1000000007; constexpr ll INF=2e18; VVI prd(VVI& a, VVI& b){ int n=a.size(), m=b[0].size(); VVI ret(n,VI(m)); REP(i,n)REP(j,m){ ll sum=0; REP(k,a[0].size()){ sum=(sum+a[i][k]*b[k][j]%MOD)%MOD; } ret[i][j]=sum; } return ret; } VVI matrix_power(VVI x, ll y){ int n=x.size(); VVI ret(n,VI(n,0)); REP(i,n) ret[i][i]=1; while(y){ if(y&1) ret=prd(ret,x); x=prd(x,x); y>>=1; } return ret; } int main(){ int n, k, l; cin >> n >> k >> l; VVI a(n,VI(n,0)); REP(i,n){ for(int j=i-1;j>=i-l;j--){ a[i][(j+2*n)%n]++; } } a=matrix_power(a,k); VVI x(1,VI(n,0)); x[0][0]=1; VVI ans=prd(x,a); REP(i,n) cout << ans[0][i] << endl; }