結果

問題 No.1171 Runs in Subsequences
ユーザー daikisuyamadaikisuyama
提出日時 2020-08-15 09:31:40
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,065 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 555,392 KB
最終ジャッジ日時 2024-10-10 17:19:23
合計ジャッジ時間 14,590 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 40 ms
53,120 KB
testcase_04 AC 39 ms
52,480 KB
testcase_05 AC 40 ms
52,224 KB
testcase_06 AC 39 ms
52,992 KB
testcase_07 AC 39 ms
52,352 KB
testcase_08 AC 39 ms
52,224 KB
testcase_09 AC 37 ms
52,096 KB
testcase_10 AC 61 ms
69,632 KB
testcase_11 AC 62 ms
69,120 KB
testcase_12 AC 61 ms
69,120 KB
testcase_13 AC 61 ms
69,120 KB
testcase_14 AC 62 ms
69,376 KB
testcase_15 MLE -
testcase_16 TLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()
n=len(s)
#dp[i][j]:=i文字目まで決めた時にアルファベットjになるような(文字列の個数,Runの個数)
#ペアにしてもつの珍しいけど、どちらもわからないと決まらないので
dp=[[[0,0] for i in range(26)] for i in range(n)]
mod=10**9+7
for i in range(n):
    d=ord(s[i])-97
    #新しく追加
    dp[i][d]=[1,1]
    if i==0:continue
    #選ばない場合(増えはしない)
    for j in range(26):
        dp[i][j][0]+=dp[i-1][j][0]
        dp[i][j][0]%=mod
        dp[i][j][1]+=dp[i-1][j][1]
        dp[i][j][1]%=mod
    #選ぶ場合(異なればその文字列数ぶんだけ増える)
    for j in range(26):
        if j==d:
            dp[i][j][0]+=dp[i-1][j][0]
            dp[i][j][0]%=mod
            dp[i][j][1]+=dp[i-1][j][1]
            dp[i][j][1]%=mod
        else:
            dp[i][d][0]+=dp[i-1][j][0]
            dp[i][d][0]%=mod
            dp[i][d][1]+=(dp[i-1][j][0]+dp[i-1][j][1])
            dp[i][d][1]%=mod
ans=0
for j in range(26):
    ans+=dp[n-1][j][1]
    ans%=mod
print(ans)
0