#708
Silver II
Astral Superposition
시간 제한
2s
메모리 제한
1024MB
제출
0
정답
0
맞힌 사람
0
정답 비율
0.0%

문제

Note: The time limit for this problem is 4s, twice the default.

Bessie is using her nifty telescope to take photos of all the stars in the night sky. Her telescope can capture an N×NN \times N (1N10001 \leq N \leq 1000) photo of the stars where each pixel is either a star or empty sky. Each star will be represented by exactly one pixel, and no two distinct stars share the same pixel.

Overnight, something strange happens to the stars in the sky. Every star either disappears or moves AA pixels to the right, and BB pixels downwards (0A,BN0 \leq A,B \leq N). If a star disappears or moves beyond the photo boundary, it no longer appears in the second photo.

Bessie took photos before and after the shifting positions, but after experimenting in Mootoshop, she accidentally superimposed one photo onto the other. Now, she can see white pixels where both photos were empty, gray pixels where stars existed in exactly one photo, and black pixels where there was a star in both photos. Bessie also remembers that no new stars moved into the frame of the second photo, so her first photo contains all of the stars in the night sky.

Given the final photo, determine the minimum possible number of stars in the sky before the shifting incident for TT (1T10001 \leq T \leq 1000) independent test cases. If no arrangement of stars can produce the given final photo, output 1-1.

입력

The first line of input contains TT and TT test cases will follow.

The first line of each test case will contain NN AA BB.

Then follow NN lines each representing one row of the superimposed photo. The iith row from the top is represented by a string ci,1ci,2ci,Nc_{i,1}c_{i,2}\dots c_{i,N}, where each ci,j{W,G,B}c_{i,j} \in \{W,G,B\}, representing the colors white, gray, and black respectively.

It is guaranteed that the sum of N2N^2 over all test cases will not exceed 10710^7.

출력

For each test case, output the minimum number of stars that existed before the shifting, or 1-1 if impossible.

예제 입력 1

1
3 0 0
WWB
BBB
GGG

예제 출력 1

7

예제 입력 2

3
5 1 2
GWGWW
WGWWW
WBWGW
WWWWW
WWGWW
3 1 1
WWW
WBW
WWW
3 1 0
GGB
GGW
WWW

예제 출력 2

4
-1
4

점수

Input 3: A=B=0A=B=0Inputs 4-7: A=1,B=0,N10A=1, B=0, N\le 10Inputs 8-9: A=1,B=0A=1, B=0Inputs 10-12: No additional constraints.

코드 제출

코드를 제출하려면 로그인이 필요합니다.

로그인
내 제출
제출 내역이 없습니다.
맞은 사람
아직 맞은 사람이 없습니다.
난이도 투표
Silver II1명 투표· 약 1개월 전
로그인 후 AC 받으면 투표할 수 있습니다.
전체 제출
제출 내역이 없습니다.