CF1666A.Admissible Map
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
A map is a matrix consisting of symbols from the set of 'U', 'L', 'D', and 'R'.
A map graph of a map matrix a is a directed graph with n⋅m vertices numbered as (i,j) ( 1≤i≤n;1≤j≤m ), where n is the number of rows in the matrix, m is the number of columns in the matrix. The graph has n⋅m directed edges (i,j)→(i+diai,j,j+djai,j) , where (diU,djU)=(−1,0) ; (diL,djL)=(0,−1) ; (diD,djD)=(1,0) ; (diR,djR)=(0,1) . A map graph is valid when all edges point to valid vertices in the graph.
An admissible map is a map such that its map graph is valid and consists of a set of cycles.
A description of a map a is a concatenation of all rows of the map — a string a1,1a1,2…a1,ma2,1…an,m .
You are given a string s . Your task is to find how many substrings of this string can constitute a description of some admissible map.
A substring of a string s1s2…sl of length l is defined by a pair of indices p and q ( 1≤p≤q≤l ) and is equal to spsp+1…sq . Two substrings of s are considered different when the pair of their indices (p,q) differs, even if they represent the same resulting string.
输入格式
In the only input line, there is a string s , consisting of at least one and at most 20000 symbols 'U', 'L', 'D', or 'R'.
输出格式
Output one integer — the number of substrings of s that constitute a description of some admissible map.
输入输出样例
输入#1
RDUL
输出#1
2
输入#2
RDRU
输出#2
0
输入#3
RLRLRL
输出#3
6
说明/提示
In the first example, there are two substrings that can constitute a description of an admissible map — "RDUL" as a matrix of size 2×2 (pic. 1) and "DU" as a matrix of size 2×1 (pic. 2).
In the second example, no substring can constitute a description of an admissible map. E. g. if we try to look at the string "RDRU" as a matrix of size 2×2 , we can find out that the resulting graph is not a set of cycles (pic. 3).
In the third example, three substrings "RL", two substrings "RLRL" and one substring "RLRLRL" can constitute an admissible map, some of them in multiple ways. E. g. here are two illustrations of substring "RLRLRL" as matrices of size 3×2 (pic. 4) and 1×6 (pic. 5).