2394: Modern Art

Memory Limit:128 MB Time Limit:1.000 S
Creator:
Submit:0 Solved:0

Description

A new and upcoming artist has a unique way to create checkered patterns. The idea is to use an M-by-N canvas which is initially entirely black. Then the artist repeatedly chooses a row or column and runs their magic brush along the row or column. The brush changes the colour of each cell in the row or column from black to gold or gold to black. Given the artist’s choices, your job is to determine how much gold appears in the pattern determined by these choices

Input

The first line of input will be a positive integer M. The second line of input will be a positive integer N. The third line of input will be a positive integer K. The remaining input will be K lines giving the choices made by the artist. Each of these lines will either be R followed by a single space and then an integer which is a row number, or C followed by a single space and then an integer which is a column number. Rows are numbered top down from 1 to M. Columns are numbered left to right from 1 to N.

Output

Output one non-negative integer which is equal to the number of cells that are gold in the pattern determined by the artist’s choices. 

Sample Input

3
3
2
R 1
C 1

Sample Output

4

HINT

Explanation of Output for Sample
After running the brush along the first row, the canvas looks like this: 
GGG 
BBB 
BBB 
Then after running the brush along the first column, four cells are gold in the final pattern determined by the artist’s choices: 
BGG 
GBB 
GBB 

Source/Category