Problems > Avoid the Set {11, 010}

Avoid the Set {11, 010}

Difficulty: 2400 4000 ms 128 MB

combinatorics aho-corasick matrix-exponentiation

Count the strings of length N over {0, 1} that contain none of 11, 010 as a substring, modulo 109+7.

Input: one integer N.

Output: the count mod 109+7.

Constraints:

  • 1 ≤ N ≤ 1018

Sample Tests

Input 1
1
Output 1
2
Input 2
2
Output 2
3
Input 3
4
Output 3
4

Read the Editorial

Discussion (opens after you solve — no spoilers before)

No comments yet.

Submit Your Solution

Log in or create a free account to run and submit code.