T - Permutation Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MiB

配点 : 100100

問題文

NN を正整数とします。 長さ N1N - 1 の文字列 ss が与えられます。 ss<> からなります。

(1,2,,N)(1, 2, \ldots, N) を並べ替えた順列 (p1,p2,,pN)(p_1, p_2, \ldots, p_N) であって、次の条件を満たすものは何通りでしょうか? 109+710^9 + 7 で割った余りを求めてください。

  • ii (1iN11 \leq i \leq N - 1) について、ssii 文字目が < の場合は pi<pi+1p_i < p_{i + 1} であり、ssii 文字目が > の場合は pi>pi+1p_i > p_{i + 1} である。

制約

  • NN は整数である。
  • 2N30002 \leq N \leq 3000
  • ss は長さ N1N - 1 の文字列である。
  • ss<> からなる。

入力

入力は以下の形式で標準入力から与えられる。

NN
ss

出力

条件を満たす順列は何通りか? 109+710^9 + 7 で割った余りを出力せよ。


入力例 1Copy

Copy
4
<><

出力例 1Copy

Copy
5

条件を満たす順列は次の 55 通りです。

  • (1,3,2,4)(1, 3, 2, 4)
  • (1,4,2,3)(1, 4, 2, 3)
  • (2,3,1,4)(2, 3, 1, 4)
  • (2,4,1,3)(2, 4, 1, 3)
  • (3,4,1,2)(3, 4, 1, 2)

入力例 2Copy

Copy
5
<<<<

出力例 2Copy

Copy
1

条件を満たす順列は次の 11 通りです。

  • (1,2,3,4,5)(1, 2, 3, 4, 5)

入力例 3Copy

Copy
20
>>>><>>><>><>>><<>>

出力例 3Copy

Copy
217136290

答えを 109+710^9 + 7 で割った余りを出力することを忘れずに。

Score : 100100 points

Problem Statement

Let NN be a positive integer. You are given a string ss of length N1N - 1, consisting of < and >.

Find the number of permutations (p1,p2,,pN)(p_1, p_2, \ldots, p_N) of (1,2,,N)(1, 2, \ldots, N) that satisfy the following condition, modulo 109+710^9 + 7:

  • For each ii (1iN11 \leq i \leq N - 1), pi<pi+1p_i < p_{i + 1} if the ii-th character in ss is <, and pi>pi+1p_i > p_{i + 1} if the ii-th character in ss is >.

Constraints

  • NN is an integer.
  • 2N30002 \leq N \leq 3000
  • ss is a string of length N1N - 1.
  • ss consists of < and >.

Input

Input is given from Standard Input in the following format:

NN
ss

Output

Print the number of permutations that satisfy the condition, modulo 109+710^9 + 7.


Sample Input 1Copy

Copy
4
<><

Sample Output 1Copy

Copy
5

There are five permutations that satisfy the condition, as follows:

  • (1,3,2,4)(1, 3, 2, 4)
  • (1,4,2,3)(1, 4, 2, 3)
  • (2,3,1,4)(2, 3, 1, 4)
  • (2,4,1,3)(2, 4, 1, 3)
  • (3,4,1,2)(3, 4, 1, 2)

Sample Input 2Copy

Copy
5
<<<<

Sample Output 2Copy

Copy
1

There is one permutation that satisfies the condition, as follows:

  • (1,2,3,4,5)(1, 2, 3, 4, 5)

Sample Input 3Copy

Copy
20
>>>><>>><>><>>><<>>

Sample Output 3Copy

Copy
217136290

Be sure to print the number modulo 109+710^9 + 7.



2025-11-30 (Sun)
09:03:21 +09:00