Calvin the robot lies in an infinite rectangular grid. Calvin's source code contains a list of n commands, each either 'U', 'R', 'D', or 'L' — instructions to move a single square up, right, down, or left, respectively. How many ways can Calvin execute a non-empty contiguous substrings of commands and return to the same square he starts in? Two substrings are considered different if they have different starting or ending indices.
The first line of the input contains a single positive integer, n (1 ≤ n ≤ 200) — the number of commands.
The next line contains n characters, each either 'U', 'R', 'D', or 'L' — Calvin's source code.
Print a single integer — the number of contiguous substrings that Calvin can execute and return to his starting square.
6 URLLDR
2
4 DLUU
0
7 RLRLRLR
12
In the first case, the entire source code works, as well as the "RL" substring in the second and third characters.
Note that, in the third case, the substring "LR" appears three times, and is therefore counted three times to the total result.
- #!/usr/bin/python
- # -*-coding:utf-8 -*-
- from collections import Counter
- n=int(raw_input())
- commands=list(raw_input())
- ans=0
- for i in range(n):
- for j in range(i+1,n+1):
- c=Counter(commands[i:j])
- if c['R']==c['L'] and c['U']==c['D']:
- ans+=1
- print ans
本文探讨了一个位于无限矩形网格中的机器人如何通过执行其源代码中的连续子串指令返回起点的问题。具体而言,机器人遵循一系列向上(U)、向下(D)、向左(L)和向右(R)的指令。文章提供了一段Python代码示例,该代码能够计算出所有能让机器人回到起点的有效子串数量。

571

被折叠的 条评论
为什么被折叠?



