

Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 点
問題文
<
, >
からなる長さ の文字列 が与えられます.
長さ の数列 が以下の条件を満たすとき,それをよい数列と呼ぶことにします.
- 各 () について, の 文字目が
<
なら で,>
なら .
よい数列の転倒数としてあり得る最小値を求めてください.
数列の転倒数とは
長さ の数列 の転倒数とは,整数の組 () であって, を満たすものの個数です.
制約
- は
<
,>
からなる長さ の文字列. - 入力される値はすべて整数.
入力
入力は以下の形式で標準入力から与えられる.
出力
答えを出力せよ.
入力例 1Copy
4 <><
出力例 1Copy
1
とすると,これはよい数列です. また, の転倒数は です. 転倒数が のよい数列は存在しないので, が答えになります.
入力例 2Copy
2 <
出力例 2Copy
0
入力例 3Copy
10 >>>>>>>>>
出力例 3Copy
45
入力例 4Copy
30 <<><>>><><>><><><<>><<<><><<>
出力例 4Copy
19
Score : points
Problem Statement
You are given a string of length consisting of <
and >
.
A sequence of length is called a good sequence if and only if it satisfies the following condition:
- For each (), if the -th character of is
<
, then ; if it is>
, then .
Find the minimum possible inversion number of a good sequence.
What is the inversion number of a sequence?
The inversion number of a sequence of length is the number of pairs of integers () such that .
Constraints
- is a string of length consisting of
<
and>
. - All input values are integers.
Input
The input is given from Standard Input in the following format:
Output
Print the answer.
Sample Input 1Copy
4 <><
Sample Output 1Copy
1
is a good sequence, and its inversion number is . There is no good sequence whose inversion number is , so the answer is .
Sample Input 2Copy
2 <
Sample Output 2Copy
0
Sample Input 3Copy
10 >>>>>>>>>
Sample Output 3Copy
45
Sample Input 4Copy
30 <<><>>><><>><><><<>><<<><><<>
Sample Output 4Copy
19