結果
問題 | No.1521 Playing Musical Chairs Alone |
ユーザー | srjywrdnprkt |
提出日時 | 2023-06-13 23:29:23 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,684 bytes |
コンパイル時間 | 1,162 ms |
コンパイル使用メモリ | 114,644 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-22 10:29:05 |
合計ジャッジ時間 | 3,198 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | WA | - |
testcase_06 | AC | 22 ms
6,944 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,940 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 | 75 ms
6,944 KB |
testcase_23 | WA | - |
testcase_24 | AC | 73 ms
6,944 KB |
testcase_25 | AC | 104 ms
6,944 KB |
ソースコード
#include <iostream> #include <vector> #include <cmath> #include <map> #include <set> #include <iomanip> #include <queue> #include <algorithm> #include <numeric> #include <deque> #include <complex> #include <cassert> using namespace std; using ll = long long; const ll modc = 1e9+7; class mint { ll x; public: mint(ll x=0) : x((x%modc+modc)%modc) {} mint operator-() const { return mint(-x); } mint& operator+=(const mint& a) { if ((x += a.x) >= modc) x -= modc; return *this; } mint& operator-=(const mint& a) { if ((x += modc-a.x) >= modc) x -= modc; return *this; } mint& operator*=(const mint& a) { (x *= a.x) %= modc; return *this; } mint operator+(const mint& a) const { mint res(*this); return res+=a; } mint operator-(const mint& a) const { mint res(*this); return res-=a; } mint operator*(const mint& a) const { mint res(*this); return res*=a; } mint pow(ll t) const { if (!t) return 1; mint a = pow(t>>1); a *= a; if (t&1) a *= *this; return a; } mint inv() const { return pow(modc-2); } mint& operator/=(const mint& a) { return (*this) *= a.inv(); } mint operator/(const mint& a) const { mint res(*this); return res/=a; } bool operator == (const mint& a) const{ return x == a.x; } friend ostream& operator<<(ostream& os, const mint& m){ os << m.x; return os; } friend istream& operator>>(istream& ip, mint&m) { ip >> m.x; return ip; } }; vector<vector<mint>> dot(vector<vector<mint>> &a, vector<vector<mint>> &b){ int M = a.size(); vector<vector<mint>> c(M, vector<mint>(M)); for (int i=0; i<M; i++){ for (int k=0; k<M; k++){ for (int j=0; j<M; j++) c[i][j] += (a[i][k] * b[k][j]); } } return c; } //A^N vector<vector<mint>> pow(vector<vector<mint>> A, ll N){ int M = A.size(); vector<vector<mint>> B(M, vector<mint>(M)); for (int i=0; i<M; i++) B[i][i] = 1; while(N){ if (N % 2 == 1) B = dot(B, A); N >>= 1; A = dot(A, A); } return B; } int main(){ ll N, K, L; bool f=0; cin >> N >> K >> L; vector<vector<mint>> mat(N, vector<mint>(N)); for (int i=0; i<N; i++){ for (int j=0; j<N; j++){ for (int k=1; k<=L; k++){ if ((j+k) % N == i) mat[i][j] = 1; } } } mat = pow(mat, K); for (int i=0; i<N; i++) cout << mat[0][i] << endl; return 0; }