結果

問題 No.824 Many Shifts Hard
ユーザー chocoruskchocorusk
提出日時 2020-04-19 04:33:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 603 ms / 2,000 ms
コード長 1,617 bytes
コンパイル時間 1,100 ms
コンパイル使用メモリ 130,312 KB
実行使用メモリ 435,088 KB
最終ジャッジ日時 2024-10-04 00:47:28
合計ジャッジ時間 7,881 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 52 ms
53,428 KB
testcase_03 AC 202 ms
184,076 KB
testcase_04 AC 130 ms
123,196 KB
testcase_05 AC 473 ms
358,676 KB
testcase_06 AC 5 ms
7,024 KB
testcase_07 AC 75 ms
67,796 KB
testcase_08 AC 416 ms
333,420 KB
testcase_09 AC 289 ms
243,400 KB
testcase_10 AC 25 ms
26,600 KB
testcase_11 AC 63 ms
60,480 KB
testcase_12 AC 201 ms
162,292 KB
testcase_13 AC 378 ms
303,840 KB
testcase_14 AC 603 ms
435,088 KB
testcase_15 AC 585 ms
397,572 KB
testcase_16 AC 67 ms
62,536 KB
testcase_17 AC 559 ms
432,908 KB
testcase_18 AC 3 ms
6,820 KB
testcase_19 AC 559 ms
434,628 KB
testcase_20 AC 562 ms
434,312 KB
testcase_21 AC 3 ms
6,816 KB
testcase_22 AC 568 ms
434,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;
const ll MOD=1e9+7;
ll dp[2][303][303][303];
int main()
{
    int n, k;
    cin>>n>>k;
    for(int i=1; i<=min(k, n-1); i++){
        dp[0][0][i][i+1]=1;
    }
    dp[1][0][k][k+1]=1;
    for(int i=0; i<k; i++){
        for(int j=0; j<=k; j++){
            for(int l=j+1; l<=k+1; l++){
                for(int t=0; t<2; t++){
                    int c=1;
                    if(j) (dp[t][i+1][j-1][l]+=dp[t][i][j][l])%=MOD, c++;
                    if(j+1<l) (dp[t][i+1][j][l-1]+=dp[t][i][j][l])%=MOD;
                    (dp[t][i+1][j][l]+=(n-c)*dp[t][i][j][l])%=MOD;
                }
            }
        }
    }
    ll ans=1;
    for(int i=0; i<k; i++) (ans*=(n-1))%=MOD;
    for(int i=0; i<=k; i++){
        for(int j=i+1; j<=k+1; j++){
            (ans+=dp[0][k][i][j]*j)%=MOD;
        }
    }
    if(n>=k+2){
        for(int i=0; i<=k; i++){
            for(int j=i+1; j<=k+1; j++){
                ll c=(n-k-1)*j+(ll)(n-k-1)*(n-k)/2;
                c%=MOD;
                (ans+=dp[1][k][i][j]*c)%=MOD;
            }
        }
    }
    cout<<ans<<endl;
	return 0;
}
0