페이지가 로드되지 않나요? 여기를 눌러보면 고쳐질 수도 있어요.
Placeholder

#5791

Bovine Genetics 1초 512MB

문제

After sequencing the genomes of his cows, Farmer John has moved onto genomic editing! As we know, a genome can be represented by a string consisting of As, Cs, Gs, and Ts. The maximum length of a genome under consideration by Farmer John is 10^5.

Farmer John starts with a single genome and edits it by performing the following steps:

  1. Split the genome between every two consecutive equal characters.

  2. Reverse each of the resulting substrings.

  3. Concatenate the reversed substrings together in the same order.

For example, if FJ started with the genome AGGCTTT then he would perform the following steps:

  1. Split between the consecutive Gs and Ts to get AG | GCT | T | T.

  2. Reverse each substring to get GA | TCG | T | T.

  3. Concatenate the substrings together to get GATCGTT.

Unfortunately, after editing the genome, Farmer John's computer crashed and he lost the sequence of the genome he originally started with. Furthermore, some parts of the edited genome have been damaged, meaning that they have been replaced by question marks.

Given the sequence of the edited genome, help FJ determine the number of possibilities for the original genome, modulo 10^9+7.


입력

A non-empty string where each character is one of A, G, C, T, or ?.


출력

The number of possible original genomes modulo 10^9+7.


예제1

입력
?
출력
4

The question mark can be any of A, G, C, or T.


예제2

입력
GAT?GTT
출력
3

There are two possible original genomes aside from AGGCTTT, which was described above.

AGGATTT -> AG | GAT | T | T -> GA | TAG | T | T -> GATAGTT

TAGGTTT -> TAG | GT | T | T -> GAT | TG | T | T -> GATTGTT

출처

USACO 2020 December Gold

역링크 공식 문제집만