CF1359B.New Theatre Square

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You might have remembered Theatre square from the problem 1A. Now it's finally getting repaved.

The square still has a rectangular shape of n×mn \times m meters. However, the picture is about to get more complicated now. Let ai,ja_{i,j} be the jj -th square in the ii -th row of the pavement.

You are given the picture of the squares:

  • if $a_{i,j} = $ "*", then the jj -th square in the ii -th row should be black;
  • if $a_{i,j} = $ ".", then the jj -th square in the ii -th row should be white.

The black squares are paved already. You have to pave the white squares. There are two options for pavement tiles:

  • 1×11 \times 1 tiles — each tile costs xx burles and covers exactly 11 square;
  • 1×21 \times 2 tiles — each tile costs yy burles and covers exactly 22 adjacent squares of the same row. Note that you are not allowed to rotate these tiles or cut them into 1×11 \times 1 tiles.

You should cover all the white squares, no two tiles should overlap and no black squares should be covered by tiles.

What is the smallest total price of the tiles needed to cover all the white squares?

输入格式

The first line contains a single integer tt ( 1t5001 \le t \le 500 ) — the number of testcases. Then the description of tt testcases follow.

The first line of each testcase contains four integers nn , mm , xx and yy ( 1n1001 \le n \le 100 ; 1m10001 \le m \le 1000 ; 1x,y10001 \le x, y \le 1000 ) — the size of the Theatre square, the price of the 1×11 \times 1 tile and the price of the 1×21 \times 2 tile.

Each of the next nn lines contains mm characters. The jj -th character in the ii -th line is ai,ja_{i,j} . If $a_{i,j} = $ "*", then the jj -th square in the ii -th row should be black, and if $a_{i,j} = $ ".", then the jj -th square in the ii -th row should be white.

It's guaranteed that the sum of n×mn \times m over all testcases doesn't exceed 10510^5 .

输出格式

For each testcase print a single integer — the smallest total price of the tiles needed to cover all the white squares in burles.

输入输出样例

  • 输入#1

    4
    1 1 10 1
    .
    1 2 10 1
    ..
    2 1 10 1
    .
    .
    3 3 3 7
    ..*
    *..
    .*.

    输出#1

    10
    1
    20
    18

说明/提示

In the first testcase you are required to use a single 1×11 \times 1 tile, even though 1×21 \times 2 tile is cheaper. So the total price is 1010 burles.

In the second testcase you can either use two 1×11 \times 1 tiles and spend 2020 burles or use a single 1×21 \times 2 tile and spend 11 burle. The second option is cheaper, thus the answer is 11 .

The third testcase shows that you can't rotate 1×21 \times 2 tiles. You still have to use two 1×11 \times 1 tiles for the total price of 2020 .

In the fourth testcase the cheapest way is to use 1×11 \times 1 tiles everywhere. The total cost is 63=186 \cdot 3 = 18 .

首页