結果

問題 No.93 ペガサス
ユーザー yaoshimaxyaoshimax
提出日時 2015-03-04 01:03:31
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 2,564 bytes
コンパイル時間 425 ms
コンパイル使用メモリ 6,928 KB
実行使用メモリ 246,024 KB
最終ジャッジ日時 2023-09-06 06:41:20
合計ジャッジ時間 14,509 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,144 KB
testcase_01 AC 10 ms
5,972 KB
testcase_02 AC 11 ms
6,032 KB
testcase_03 AC 11 ms
5,880 KB
testcase_04 AC 1,035 ms
73,048 KB
testcase_05 AC 334 ms
29,244 KB
testcase_06 AC 222 ms
21,292 KB
testcase_07 AC 3,841 ms
246,024 KB
testcase_08 AC 1,790 ms
117,580 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(raw_input())
mod=1000000007
dp=[[[[0 for i in range(2)] for j in range(2)] for k in range(N+1)] for l in range(N+2)]
dp[1][0][0][0]=1
dp[2][0][0][0]=2

for i in range(2,N+1):
    for j in range(N+1):
        #if dp[i][j][0][0] >0 or dp[i][j][0][1] > 0 or dp[i][j][1][0]>0 or dp[i][j][1][1]>0:
        #    print i,j, dp[i][j][0][0], dp[i][j][0][1],dp[i][j][1][0],dp[i][j][1][1]
        if dp[i][j][0][0]>0:
            dp[i+1][j][0][0]+=(i-1-j)*dp[i][j][0][0]
            dp[i+1][j][0][0]%=mod
            dp[i+1][j][0][1]+=2*dp[i][j][0][0]
            dp[i+1][j][0][1]%=mod
            if j-1>=0:
                dp[i+1][j-1][0][0]+=j*dp[i][j][0][0]
                dp[i+1][j-1][0][0]%=mod
        if dp[i][j][0][1]>0: # (i) (i-2) is adjacent, (i-1) (i-3) is not. insert i+1 in i+1 different positions
            dp[i+1][j][1][0]+=(i-2-j)*dp[i][j][0][1]
            dp[i+1][j][1][0]%=mod
            dp[i+1][j][1][1]+=2*dp[i][j][0][1] # next to (i-1), both side
            dp[i+1][j][1][1]%=mod # next to (i-1), both side
            dp[i+1][j][0][0]+=dp[i][j][0][1] # between (i) and (i-2)
            dp[i+1][j][0][0]%=mod # between (i) and (i-2)
            if j-1>=0:
                dp[i+1][j-1][1][0]+=j*dp[i][j][0][1]
                dp[i+1][j-1][1][0]%=mod
        if dp[i][j][1][0]>0: # (i-1) (i-3) is adjacent, (i) (i-2) is not, insert i+1 
            dp[i+1][j+1][0][0]+=(i-1-j)*dp[i][j][1][0]
            dp[i+1][j+1][0][0]%=mod
            dp[i+1][j+1][0][1]+=dp[i][j][1][0] # next to (i-1), opposite of (i-3)
            dp[i+1][j+1][0][1]%=mod # next to (i-1), opposite of (i-3)
            dp[i+1][j][0][1]+=dp[i][j][1][0] # between (i-1) and (i-3)
            dp[i+1][j][0][1]%=mod # between (i-1) and (i-3)
            if j-1>=0:
                dp[i+1][j][0][0]+=j*dp[i][j][1][0]
                dp[i+1][j][0][0]%=mod
        if dp[i][j][1][1]>0: # (i-1) (i-3) is adjacent, (i)(i-2) is adjacent
            dp[i+1][j+1][1][0]+=(i-2-j)*dp[i][j][1][1]
            dp[i+1][j+1][1][0]%=mod
            dp[i+1][j+1][1][1]+=dp[i][j][1][1] # next to (i-1), opposite of (i-3)
            dp[i+1][j+1][1][1]%=mod # next to (i-1), opposite of (i-3)
            dp[i+1][j][1][1]+=dp[i][j][1][1] # between (i-1) and (i-3)
            dp[i+1][j][1][1]%=mod # between (i-1) and (i-3)
            dp[i+1][j+1][0][0]+=dp[i][j][1][1] # between (i) and (i-2)
            dp[i+1][j+1][0][0]%=mod # between (i) and (i-2)
            if j-1>=0:
                dp[i+1][j][1][0]+=j*dp[i][j][1][1]
                dp[i+1][j][1][0]%=mod
print dp[N][0][0][0]

0