結果

問題 No.1269 I hate Fibonacci Number
ユーザー 👑 rin204rin204
提出日時 2023-12-29 16:21:56
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 2,249 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 81,828 KB
実行使用メモリ 89,404 KB
最終ジャッジ日時 2023-12-29 16:22:23
合計ジャッジ時間 26,604 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
62,412 KB
testcase_01 AC 41 ms
55,608 KB
testcase_02 AC 141 ms
76,328 KB
testcase_03 AC 45 ms
61,556 KB
testcase_04 AC 55 ms
64,312 KB
testcase_05 AC 44 ms
61,296 KB
testcase_06 AC 45 ms
61,296 KB
testcase_07 AC 47 ms
61,552 KB
testcase_08 AC 53 ms
64,316 KB
testcase_09 AC 45 ms
61,296 KB
testcase_10 AC 45 ms
61,300 KB
testcase_11 AC 51 ms
64,312 KB
testcase_12 AC 47 ms
61,552 KB
testcase_13 AC 1,905 ms
77,860 KB
testcase_14 AC 2,349 ms
77,988 KB
testcase_15 AC 278 ms
76,312 KB
testcase_16 AC 1,799 ms
77,992 KB
testcase_17 AC 104 ms
76,324 KB
testcase_18 AC 1,943 ms
77,876 KB
testcase_19 AC 1,299 ms
76,848 KB
testcase_20 AC 374 ms
76,472 KB
testcase_21 AC 1,218 ms
77,096 KB
testcase_22 AC 996 ms
76,848 KB
testcase_23 AC 1,159 ms
76,732 KB
testcase_24 AC 554 ms
76,708 KB
testcase_25 AC 689 ms
76,732 KB
testcase_26 AC 123 ms
76,332 KB
testcase_27 AC 52 ms
66,512 KB
testcase_28 AC 376 ms
76,608 KB
testcase_29 AC 605 ms
76,448 KB
testcase_30 AC 273 ms
76,324 KB
testcase_31 TLE -
testcase_32 AC 767 ms
76,724 KB
testcase_33 TLE -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque


class AhoCorasick:
    def __init__(self, words=None):
        if words is None:
            self.words = []
        else:
            self.words = words

    def register(self, word):
        self.words.append(word)

    def build(self):
        self.children = [{}]
        self.match = [[]]

        for i, word in enumerate(self.words):
            self._register(i, word)

        self.failure = [0] * len(self.children)
        self._create_failure()

    def _register(self, i, word):
        k = 0
        for s in word:
            if s in self.children[k]:
                k = self.children[k][s]
            else:
                le = len(self.children)
                self.children[k][s] = le
                self.children.append({})
                self.match.append([])
                k = le

        self.match[k].append(i)

    def _create_failure(self):
        queue = deque(self.children[0].values())
        while queue:
            k = queue.popleft()
            b = self.failure[k]
            for s, j in self.children[k].items():
                self.failure[j] = self._next(b, s)
                self.match[j] += self.match[self.failure[j]]
                queue.append(j)

    def _next(self, k, s):
        while 1:
            if s in self.children[k]:
                return self.children[k][s]
            elif k == 0:
                return 0

            k = self.failure[k]

    def search(self, text):
        k = 0
        le = len(text)
        matched = [[] for _ in range(le)]
        for i, s in enumerate(text):
            k = self._next(k, s)
            for m in self.match[k]:
                matched[i - len(self.words[m]) + 1].append(m)

        return matched


MOD = 10**9 + 7
n, l, r = map(int, input().split())
aho = AhoCorasick()
a = 1
b = 1
while b <= r:
    if l <= b <= r:
        aho.register(str(b))
    a, b = b, a + b

aho.build()

m = len(aho.children)
dp = [0] * m
dp[0] = 1
for _ in range(n):
    ndp = [0] * m
    for k, v in enumerate(dp):
        for i in range(10):
            nex = aho._next(k, str(i))
            if aho.match[nex]:
                continue

            ndp[nex] += v

    dp = [d % MOD for d in ndp]

print((sum(dp) - 1) % MOD)
0