2064: [USACO 2025 US Open Contest, Bronze] Problem 1. Hoof Paper Scissors Minus One
题目描述
In a game of Hoof Paper Scissors, Bessie and Elsie can put out one of ( ) different hoof symbols labeled , each corresponding to a different material. There is a complicated chart of how the different materials interact with one another, and based on that chart, either:
- One symbol wins and the other loses.
- The symbols draw against each other.
Hoof Paper Scissors Minus One works similarly, except Bessie and Elsie can each put out two symbols, one with each hoof. After observing all four symbols that they have all put out, they each choose one of their two symbols to play. The outcome is decided based on normal Hoof Paper Scissor conventions.
Given the ( ) symbol combinations that Elsie plans to make across each game, Bessie wants to know how many different symbol combinations would result in a guaranteed win against Elsie. A symbol combination is defined as an ordered pair where is the symbol the cow plays with her left hoof and is the symbol the cow plays with her right hoof. Can you compute this for each game?
输入
Out of the following lines of input, the th line consists of characters where each . If , then symbol draws against symbol . If , then symbol wins against symbol . If , then symbol loses against symbol . It is guaranteed that .
The next lines contain two space separated integers and where . This represents Elsie's symbol combination for that game.
输出
样例输入
3 3
D
WD
LWD
1 2
2 3
1 1
样例输出
0
0
5
提示
- Paper+Paper
- Paper+Scissors
- Paper+Hoof
- Hoof+Paper
- Scissors+Paper
If Bessie plays any of these combinations, she can guarantee that she wins by putting forward Paper.
SCORING:
- Inputs 2-6:
- Inputs 7-12: No additional constraints.