Problems > Avoid the Set {00, 11}

Avoid the Set {00, 11}

Difficulty: 2400 4000 ms 128 MB

combinatorics aho-corasick matrix-exponentiation

Count the strings of length N over {0, 1} that contain none of 00, 11 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
2
Input 3
4
Output 3
2

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.