Testing Round #16 (Unrated) C. Skier(map的应用)
outputstandard output
Skier rides on a snowy field. Its movements can be described by a string of characters ‘S’, ‘N’, ‘W’, ‘E’ (which correspond to 1 meter movement in the south, north, west or east direction respectively).
It is known that if he moves along a previously unvisited segment of a path (i.e. this segment of the path is visited the first time), then the time of such movement is 5 seconds. If he rolls along previously visited segment of a path (i.e., this segment of the path has been covered by his path before), then it takes 1 second.
Find the skier’s time to roll all the path.
Input
The first line contains an integer t (1≤t≤104) — the number of test cases in the input. Then t test cases follow.
Each set is given by one nonempty string of the characters ‘S’, ‘N’, ‘W’, ‘E’. The length of the string does not exceed 105 characters.
The sum of the lengths of t given lines over all test cases in the input does not exceed 105.
Output
For each test case, print the desired path time in seconds.
Example
inputCopy
5
NNN
NS
WWEN
WWEE
NWNWS
outputCopy
15
6
16
12
25
思路:我們判斷這條邊有沒有走過,主要就是看這條邊的兩個點有沒有同時出現過,同時出現過就是走過,否則就沒有。
主要用到了map。
代碼如下:
努力加油a啊,(o)/~
總結
以上是生活随笔為你收集整理的Testing Round #16 (Unrated) C. Skier(map的应用)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: ARM 汇编 内存访问指令
- 下一篇: windows五笔输入法如何打出顿号