시간 제한메모리 제한제출정답맞힌 사람정답 비율
서브태스크 참고 (추가 시간 없음) 1024 MB43312972.500%

문제

You work for an animal shelter and you are responsible for feeding the animals. You already prepared $D$ portions of dog food and $C$ portions of cat food.

There are a total of $N$ animals waiting in a line, some of which are dogs and others are cats. It might be possible that all the animals in the line are dogs or all the animals are cats. A string $S$ of $N$ characters C and D represents the order of cats and dogs in the line. The $i$-th character is equal to C if the $i$-th animal in the line is a cat. Similarly, the $i$-th character is equal to D if the $i$-th animal in the line is a dog.

The animals are fed in the order they stay in the line. Each dog eats exactly $1$ portion of dog food and similarly each cat eats exactly $1$ portion of cat food. Moreover, you have extra portions of cat food. Every time a dog eats food, you bring $M$ extra portions of cat food for cats.

Animals have to be fed in the order they wait in line and an animal can only eat if the animal before it has already eaten. That means that if you run out of dog (or cat) food portions and a dog (or a cat) is about to get fed, the line will not move, as all the animals will wait patiently.

You need to determine if in this scenario all the dogs in the line will be fed. Note that this means that some cats might remain in the line, but worry not, you will eventually feed them later!

입력

The first line of the input gives the number of test cases, $T$. $T$ test cases follow.

The first line of each test case contains four integers $N$, $D$, $C$, and $M$: the number of animals, the initial number of dog food portions, the initial number of cat food portions, and the additional portions of cat food that we add after a dog eats a portion of dog food, respectively.

The next line contains a string $S$ of length $N$ representing the arrangement of animals.

출력

For each test case, output one line containing Case #x: y, where $x$ is the test case number (starting from $1$) and $y$ is YES if all the dogs will be fed and NO otherwise.

제한

  • $1 \le T \le 100$.
  • $1 ≤ N ≤ 10^4$.
  • $0 ≤ D, C ≤ 10^6$.
  • $S$ consists of only characters C and D.

Test Set 1 (5점)

시간 제한: 20 초

  • $M = 0$

Test Set 2 (6점)

시간 제한: 40 초

  • $0 \le M \le 10^6$.

예제 입력 1

3
6 10 4 0
CCDCDD
4 1 2 0
CCCC
4 2 1 0
DCCD

예제 출력 1

Case #1: YES
Case #2: YES
Case #3: NO

In Sample Case #1, there are $10$ portions of dog food and $4$ portions of cat food.

  1. The first two animals are cats, so after they eat, $2$ portions of cat food remain.
  2. Then a dog eats one portion of dog food. Now, there are $9$ portions of dog food left.
  3. Next, a cat eats a portion of cat food, reducing the number of portions of cat food to $1$.
  4. The last two animals are dogs and they each eat one portion of dog food.

So in this case, all the dogs are able to eat.

In Sample Case #2, there are no dogs. Hence, all (zero) dogs will be able to eat trivially.

In Sample Case #3, the cat before the second dog will not be able to eat because there will not be enough portions of cat food. Hence, the second dog will also not eat.

예제 입력 2

2
12 4 2 2
CDCCCDCCDCDC
8 2 1 3
DCCCCCDC

예제 출력 2

Case #1: YES
Case #2: NO

In Sample Case #1, $2$ portions of cat food appear whenever a dog eats a portion of dog food.

  1. After the first cat eats, there is $1$ portion of cat food left.
  2. Then a dog eats, leaving $3$ portions of dog food and $3$ portions of cat food.
  3. After the next $3$ cats eat, there are $3$ portions of dog food and $0$ portions of cat food remaining.
  4. Then a dog eats, leaving $2$ portions of dog food and $2$ portions of cat food.
  5. After the next $2$ cats eat food, there are $2$ portions of dog food and $0$ portions of cat food left.
  6. Now a dog eats, leaving $1$ portion of dog food and $2$ portions of cat food.
  7. Next a cat eats, leaving $1$ portion of dog food and $1$ portion of cat food.
  8. The last dog eats the remaining portion of dog food.

So in this case, all the dogs are able to eat.

In Sample Case #2, the cat before the second dog will not be able to eat because there will not be enough portions of cat food.

채점 및 기타 정보

  • 예제는 채점하지 않는다.