Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Bessie has recently received a painting set, and she wants to paint the long fence at one end of her pasture. The fence consists of

Bessie has recently received a painting set, and she wants to paint the long fence at one end of her pasture. The fence consists of consecutive 1-meter segments ( ). Bessie has 26 different colors available, which she labels with the letters 'A' through 'Z' in increasing order of darkness ('A' is a very light color, and 'Z' is very dark). She can therefore describe the desired color she wants to paint each fence segment as a length- string where each character is a letter. Initially, all fence segments are uncolored. Bessie can color any contiguous range of segments with a single color in a single brush stroke as long as she never paints a lighter color over a darker color (she can only paint darker colors over lighter colors). For example, an initially uncolored segment of length four can be colored as follows: .... -> BBB. -> BBLL -> BQQL Running short on time, Bessie thinks she may need to leave some consecutive range of fence segments unpainted! Currently, she is considering candidate ranges ( ), each described by by two integers with giving the indices of endpoints of the range of segments to be left unpainted. For each candidate range, what is the minimum number of strokes needed to paint every fence segment outside those in the range with its desired color while leaving all fence segments inside the range uncolored? Note that Bessie does not actually do any painting during this process, so the answers for each candidate range are independent. INPUT FORMAT (input arrives from the terminal / stdin): The first line contains and . The next line contains a string of length characters representing the desired color for each fence segment. The next lines each contain two space-separated integers and representing a candidate range to possibly leave unpainted. OUTPUT FORMAT (print output to the terminal / stdout): For each of the candidates, output the answer on a new line. SAMPLE INPUT: 8 2 ABBAABCB 3 6 1 4 SAMPLE OUTPUT: 4 3 In this example, excluding the sub-range corresponding to the desired pattern requires four strokes to paint while excluding requires only three. .... -> AA.. -> ABBB -> ABCB SCORING: N 1 N 10 5 N Q 1 Q 10 5 (a, b) 1 a b N ab N Q N Q a b Q BAAB ABBA English (en) Test cases 1-4 satisfy . Test cases 5-7 satisfy . Test cases 8-13 satisfy no additional constraints. Java please!!!

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

Concepts of Database Management

Authors: Philip J. Pratt, Mary Z. Last

8th edition

1285427106, 978-1285427102

More Books

Students also viewed these Databases questions

Question

What is DDL?

Answered: 1 week ago