結果

問題 No.2367 Painting Gascket
ユーザー logxlogx
提出日時 2021-06-22 22:53:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 1,351 bytes
コンパイル時間 2,058 ms
コンパイル使用メモリ 212,332 KB
実行使用メモリ 29,184 KB
最終ジャッジ日時 2024-07-07 06:20:20
合計ジャッジ時間 3,620 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 46 ms
29,056 KB
testcase_09 AC 29 ms
20,736 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 38 ms
25,984 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 13 ms
10,112 KB
testcase_14 AC 7 ms
6,784 KB
testcase_15 AC 7 ms
6,656 KB
testcase_16 AC 16 ms
12,288 KB
testcase_17 AC 40 ms
26,752 KB
testcase_18 AC 31 ms
21,504 KB
testcase_19 AC 20 ms
14,592 KB
testcase_20 AC 42 ms
26,496 KB
testcase_21 AC 23 ms
16,512 KB
testcase_22 AC 42 ms
27,648 KB
testcase_23 AC 30 ms
21,376 KB
testcase_24 AC 13 ms
10,240 KB
testcase_25 AC 14 ms
10,880 KB
testcase_26 AC 5 ms
5,376 KB
testcase_27 AC 34 ms
22,400 KB
testcase_28 AC 29 ms
19,072 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 44 ms
29,056 KB
testcase_34 AC 44 ms
29,056 KB
testcase_35 AC 44 ms
29,056 KB
testcase_36 AC 44 ms
29,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/modint>
using mint=atcoder::modint1000000007;

int K,N;
/*
dp[i][j][k]:レベルiのガスケットについて、外のj個の辺の外の色が決まっている(ただし、決まっているものについて、種類数はk)時の塗り方の場合の数
*/

int main(){
    std::cin >> K >> N;
    std::vector dp(K+1,std::vector(4,std::vector<mint>(4)));
    dp[0][0][0]=N;
    dp[0][1][1]=N-1;
    dp[0][2][1]=N-1;
    dp[0][2][2]=std::max(N-2,0);
    dp[0][3][1]=N-1;
    dp[0][3][2]=std::max(N-2,0);
    dp[0][3][3]=std::max(N-3,0);
    for(int i=0;i<K;i++){
        auto &now=dp[i];
        auto &ne=dp[i+1];
        ne[0][0]=N*now[1][1]*now[1][1]*now[1][1];
        ne[1][1]=1*now[2][1]*now[2][1]*now[1][1] + (N-1)*now[2][2]*now[2][2]*now[1][1];

        ne[2][1]=1*now[3][1]*now[2][1]*now[2][1] + (N-1)*now[3][2]*now[2][2]*now[2][2];
        if(N>=2)ne[2][2]=2*now[3][2]*now[2][2]*now[2][1] + (N-2)*now[3][3]*now[2][2]*now[2][2];

        ne[3][1]=1*now[3][1]*now[3][1]*now[3][1] + (N-1)*now[3][2]*now[3][2]*now[3][2];
        if(N>=2)ne[3][2]=1*now[3][2]*now[3][2]*now[3][2] + 1*now[3][1]*now[3][2]*now[3][2] + (N-2)*now[3][2]*now[3][3]*now[3][3];
        if(N>=3)ne[3][3]=3*now[3][2]*now[3][2]*now[3][3] + (N-3)*now[3][3]*now[3][3]*now[3][3];
    }
    std::cout << dp[K][0][0].val() << '\n';
}
0