Reversi

AtCoder
IDagc031_b
Time2000ms
Memory256MB
Difficulty
There are $N$ stones arranged in a row. The $i$\-th stone from the left is painted in the color $C_i$. Snuke will perform the following operation zero or more times: * Choose two stones painted in the same color. Repaint all the stones between them, with the color of the chosen stones. Find the number of possible final sequences of colors of the stones, modulo $10^9+7$. ## Constraints * $1 \leq N \leq 2\times 10^5$ * $1 \leq C_i \leq 2\times 10^5(1\leq i\leq N)$ * All values in input are integers. ## Input Input is given from Standard Input in the following format: $N$ $C_1$ $:$ $C_N$ [samples]
Samples
Input #1
5
1
2
1
2
2
Output #1
3

We can make three sequences of colors of stones, as follows:

*   $(1,2,1,2,2)$, by doing nothing.
*   $(1,1,1,2,2)$, by choosing the first and third stones to perform the operation.
*   $(1,2,2,2,2)$, by choosing the second and fourth stones to perform the operation.
Input #2
6
4
2
5
4
2
4
Output #2
5
Input #3
7
1
3
1
2
3
3
2
Output #3
5
API Response (JSON)
{
  "problem": {
    "name": "Reversi",
    "description": {
      "content": "There are $N$ stones arranged in a row. The $i$\\-th stone from the left is painted in the color $C_i$. Snuke will perform the following operation zero or more times: *   Choose two stones painted in ",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "agc031_b"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "There are $N$ stones arranged in a row. The $i$\\-th stone from the left is painted in the color $C_i$.\nSnuke will perform the following operation zero or more times:\n\n*   Choose two stones painted in ...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments