結果

問題 No.1269 I hate Fibonacci Number
ユーザー 👑 rin204rin204
提出日時 2023-12-29 16:19:53
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 2,290 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 90,000 KB
最終ジャッジ日時 2024-09-27 16:15:15
合計ジャッジ時間 26,438 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
61,920 KB
testcase_01 AC 45 ms
54,388 KB
testcase_02 AC 149 ms
76,896 KB
testcase_03 AC 45 ms
54,676 KB
testcase_04 AC 48 ms
61,468 KB
testcase_05 AC 44 ms
55,800 KB
testcase_06 AC 44 ms
54,792 KB
testcase_07 AC 49 ms
61,412 KB
testcase_08 AC 51 ms
60,636 KB
testcase_09 AC 46 ms
55,360 KB
testcase_10 AC 46 ms
55,588 KB
testcase_11 AC 49 ms
60,656 KB
testcase_12 AC 50 ms
60,428 KB
testcase_13 AC 1,821 ms
77,876 KB
testcase_14 AC 2,398 ms
78,144 KB
testcase_15 AC 279 ms
76,740 KB
testcase_16 AC 1,740 ms
78,276 KB
testcase_17 AC 110 ms
76,488 KB
testcase_18 AC 1,928 ms
78,864 KB
testcase_19 AC 1,308 ms
77,268 KB
testcase_20 AC 388 ms
76,648 KB
testcase_21 AC 1,209 ms
77,972 KB
testcase_22 AC 1,019 ms
77,652 KB
testcase_23 AC 1,102 ms
77,328 KB
testcase_24 AC 581 ms
77,256 KB
testcase_25 AC 696 ms
76,764 KB
testcase_26 AC 134 ms
76,608 KB
testcase_27 AC 57 ms
66,036 KB
testcase_28 AC 362 ms
76,944 KB
testcase_29 AC 629 ms
76,792 KB
testcase_30 AC 284 ms
76,720 KB
testcase_31 AC 2,918 ms
80,248 KB
testcase_32 AC 748 ms
77,108 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()
dp = [1]
for _ in range(n):
    ndp = [0]
    for k, v in enumerate(dp):
        for i in range(10):
            nex = aho._next(k, str(i))
            if aho.match[nex]:
                continue
            if nex >= len(ndp):
                ndp += [0] * (nex - len(ndp) + 1)

            ndp[nex] += v

    dp = [d % MOD for d in ndp]

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