結果
問題 | No.824 Many Shifts Hard |
ユーザー | leaf_1415 |
提出日時 | 2019-04-29 14:07:47 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,081 bytes |
コンパイル時間 | 590 ms |
コンパイル使用メモリ | 56,288 KB |
実行使用メモリ | 94,080 KB |
最終ジャッジ日時 | 2024-06-06 16:14:01 |
合計ジャッジ時間 | 6,657 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 53 ms
28,160 KB |
testcase_03 | AC | 1,770 ms
94,080 KB |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
#include <iostream> #define llint long long #define mod 1000000007 using namespace std; llint n, K; llint dp[305][305][305], dp2[305][305]; int main(void) { cin >> n >> K; dp[0][0][1] = 1; for(int i = 0; i < K; i++){ for(int j = 0; j <= K; j++){ for(int k = 0; k <= K; k++){ if(j == k){ (dp[i+1][j+1][k+1] += dp[i][j][k]) %= mod; (dp[i+1][j][k] += dp[i][j][k] * (n-1) % mod) %= mod; } else{ (dp[i+1][j+1][k] += dp[i][j][k]) %= mod; (dp[i+1][j][k+1] += dp[i][j][k]) %= mod; (dp[i+1][j][k] += dp[i][j][k] * (n-2) % mod) %= mod; } } } } dp2[0][0] = 1; for(int i = 0; i < K; i++){ for(int j = 0; j <= K; j++){ (dp2[i+1][j+1] += dp2[i][j]) %= mod; (dp2[i+1][j] += dp2[i][j] * (n-1) % mod) %= mod; } } llint ans = 0; for(int i = 1; i <= n; i++){ llint cnt = 0; for(int j = 0; j <= min(K, n-i); j++){ if(j < n-i){ for(int k = 0; k < j+1; k++) cnt += dp[K][k][j+1] % mod, cnt %= mod; } else cnt += dp2[K][j], cnt %= mod; } ans += cnt * i % mod, ans %= mod; } cout << ans << endl; return 0; }