結果
問題 | No.824 Many Shifts Hard |
ユーザー | leaf_1415 |
提出日時 | 2019-04-26 23:19:33 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,168 bytes |
コンパイル時間 | 579 ms |
コンパイル使用メモリ | 56,028 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-04 01:18:17 |
合計ジャッジ時間 | 1,787 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 1 ms
6,940 KB |
testcase_19 | AC | 3 ms
6,940 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
ソースコード
#include <iostream> #define llint long long #define mod 1000000007 using namespace std; llint n, k; llint dp[305][305]; llint dp2[305][305]; int main(void) { cin >> n >> k; dp[0][0] = 1; for(int i = 0; i < k; i++){ for(int j = 0; j <= k+1; j++){ dp[i+1][j] += dp[i][j] * (n-1) % mod; dp[i+1][j] %= mod; if(j+1 <= k+1) dp[i+1][j+1] += dp[i][j]; if(j+1 <= k+1) dp[i+1][j+1] %= mod; } } dp2[0][0] = 1; for(int i = 0; i < k; i++){ for(int j = 0; j <= k+1; j++){ if(j==0) dp2[i+1][j] += dp2[i][j] * (n-2) % mod; else dp2[i+1][j] += dp2[i][j] * (n-1) % mod; dp2[i+1][j] %= mod; if(j+1 <= k+1) dp2[i+1][j+1] += dp2[i][j]; if(j+1 <= k+1) dp2[i+1][j+1] %= mod; } } /*for(int i = 0; i <= k; i++){ for(int j = 0; j <= k+1; j++){ cout << dp[i][j] << " "; } cout << endl; }*/ llint ans = 0; for(int i = 1; i <= n; i++){ llint cnt = 0; for(int j = 1; j <= min(k, n-1); j++){ //cout << dp[k][j] << endl; cnt += (dp[k][j] - dp2[k][j+1] + mod) % mod, cnt %= mod; } ans += cnt * i % mod; ans %= mod; } cout << ans << endl; return 0; }