Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

To feed the cats and dogs in a park, you prepared D portions of dog food and C portions of cat food. There are a

To feed the cats and dogs in a park, you 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!

Input

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.

Output

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.

Limits

Time limits: 60 seconds

1 T 100.

1 N 10^4.

0 D, C 10^6.

S consists of only characters C and D.

Test Set 1

M = 0

Test Set 1

0 M 10^6.

Sample

Sample input: 3 6 10 4 0 CCDCDD 4 1 2 0 CCCC 4 2 1 0 DCCD Sample output: 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.

The first two animals are cats, so after they eat, 2 portions of cat food remain.

Then a dog eats one portion of dog food. Now, there are 9 portions of dog food left.

Next, a cat eats a portion of cat food, reducing the number of portions of cat food to 1.

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.

Additional Sample

Sample input: 2 12 4 2 2 CDCCCDCCDCDC 8 2 1 3 DCCCCCDC Sample output: 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.

After the first cat eats, there is 1 portion of cat food left.

Then a dog eats, leaving 3 portions of dog food and 3 portions of cat food.

After the next 3 cats eat, there are 3 portions of dog food and 0 portions of cat food remaining.

Then a dog eats, leaving 2 portions of dog food and 2 portions of cat food.

After the next 2 cats eat food, there are 2 portions of dog food and 0 portions of cat food left.

Now a dog eats, leaving 1 portion of dog food and 2 portions of cat food.

Next a cat eats, leaving 1 portion of dog food and 1 portion of cat food.

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.

SOURCE CODE

/* * 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 next line contains a string S of length N representing the arrangement of animals. * * * * */

// scanf will treat the string as (white space and new line separated) words //

#include

// stdin(getchar scanf) int main(int argc, char *argv[]) { int T, N, D, C, M; char s[10001]; // array is not resize

scanf("%d", &T); // printf("the %d test cases ", T);

for (int i = 1; i <= T; ++i) { scanf("%d %d %d %d %s", &N, &D, &C, &M, s); // printf("#%d sum is %d, the string is %s ", i, N + D + C + M, s); printf("Case #%d: %s ", i, i > 2 ? "NO" : "YES"); } return 0; }

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Introduction to Wireless and Mobile Systems

Authors: Dharma P. Agrawal, Qing An Zeng

4th edition

1305087135, 978-1305087132, 9781305259621, 1305259629, 9781305537910 , 978-130508713

More Books

Students also viewed these Programming questions