A - <Inversion> Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 300300

問題文

<, > からなる長さ N1N-1 の文字列 SS が与えられます.

長さ NN の数列 x=(x1,x2,,xN)x=(x_1,x_2,\cdots,x_N) が以下の条件を満たすとき,それをよい数列と呼ぶことにします.

  • ii (1iN11 \leq i \leq N-1) について,SSii 文字目が < なら xi<xi+1x_i\lt x_{i+1} で,> なら xi>xi+1x_i \gt x_{i+1}

よい数列の転倒数としてあり得る最小値を求めてください.

数列の転倒数とは

長さ nn の数列 x=(x1,x2,,xn)x=(x_1,x_2,\cdots,x_n) の転倒数とは,整数の組 (i,j)(i,j) (1i<jn1 \leq i < j \leq n) であって,xi>xjx_i>x_j を満たすものの個数です.

制約

  • 2N2500002 \leq N \leq 250000
  • SS<, > からなる長さ N1N-1 の文字列.
  • 入力される値はすべて整数.

入力

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

NN
SS

出力

答えを出力せよ.


入力例 1Copy

Copy
4
<><

出力例 1Copy

Copy
1

x=(1,2,1,2)x=(1,2,1,2) とすると,これはよい数列です. また,xx の転倒数は 11 です. 転倒数が 00 のよい数列は存在しないので,11 が答えになります.


入力例 2Copy

Copy
2
<

出力例 2Copy

Copy
0

入力例 3Copy

Copy
10
>>>>>>>>>

出力例 3Copy

Copy
45

入力例 4Copy

Copy
30
<<><>>><><>><><><<>><<<><><<>

出力例 4Copy

Copy
19

Score : 300300 points

Problem Statement

You are given a string SS of length N1N-1 consisting of < and >.

A sequence x=(x1,x2,,xN)x=(x_1,x_2,\cdots,x_N) of length NN is called a good sequence if and only if it satisfies the following condition:

  • For each ii (1iN11 \leq i \leq N-1), if the ii-th character of SS is <, then xi<xi+1x_i\lt x_{i+1}; if it is >, then xi>xi+1x_i \gt x_{i+1}.

Find the minimum possible inversion number of a good sequence.

What is the inversion number of a sequence?

The inversion number of a sequence x=(x1,x2,,xn)x=(x_1,x_2,\cdots,x_n) of length nn is the number of pairs of integers (i,j)(i,j) (1i<jn1 \leq i < j \leq n) such that xi>xjx_i>x_j.

Constraints

  • 2N2500002 \leq N \leq 250000
  • SS is a string of length N1N-1 consisting of < and >.
  • All input values are integers.

Input

The input is given from Standard Input in the following format:

NN
SS

Output

Print the answer.


Sample Input 1Copy

Copy
4
<><

Sample Output 1Copy

Copy
1

x=(1,2,1,2)x=(1,2,1,2) is a good sequence, and its inversion number is 11. There is no good sequence whose inversion number is 00, so the answer is 11.


Sample Input 2Copy

Copy
2
<

Sample Output 2Copy

Copy
0

Sample Input 3Copy

Copy
10
>>>>>>>>>

Sample Output 3Copy

Copy
45

Sample Input 4Copy

Copy
30
<<><>>><><>><><><<>><<<><><<>

Sample Output 4Copy

Copy
19


2025-04-03 (Thu)
21:23:24 +00:00