CodeChef is a non-commercial competitive programming community
Login
Username (New User? Signup) Password (Forgot Password?)
Signup
Login or
Signup with
Connect
Note
  • Publicize your achievements on your Facebook Wall.
  • Challenge your friends or ask them for help.

Site Navigation

  • PRACTICE
    • Easy
    • Medium
    • Hard
    • Challenge
    • Peer
  • COMPETE
    • February CookOff
    • February Long Contest
    • January CookOff
  • DISCUSS
    • Wiki
    • Forums
    • Blog
    • Twitter
  • COMMUNITY
    • CodeChef Meetups
    • Campus Chapters
    • Host your Contest
    • User Groups
    • CodeChef TechTalks
    • All Educational Initiatives
    • Event Calendar
  • HELP
    • Frequently Asked Questions
    • FAQ for problem setters
    • Problem Setting
    • Ranks
    • Tutorials
  • ABOUT
    • About CodeChef
    • Team CodeChef
    • Press Room
    • CodeChef Financials
    • CodeChef Sponsorships
    • CEO's Corner
    • Contact Us
    • About Directi
Home » Compete » October 2009 (Contest IX) » Paragraph Formatting

Paragraph Formatting

Problem code: H5

  • All Submissions

All submissions for this problem are available.

Johnny is developing some word processing software. Right now, he has to deal with the problem of formatting a paragraph. Johnny has formulated the problem as follows.

There are N words in a paragraph, in which the ith word has ai characters. Each line of the paragraph can hold at most M characters. For simplicity, we assume that every two consecutive words in a line are separated by exactly one whitespace and we disregard punctuation marks.

The text editor always uses a simple greedy algorithm to break the paragraph into lines. The algorithm puts as many words in a line as possible, then moving on to the next line to do the same until there are no more words left to be placed.

Johnny needs to write a program that, given the description of the words in a paragraph, is able to process the following two operations:

  • Return the line number of a specified word
  • Replace one word with another one

Since the number of words in a paragraph can be huge, Johnny needs to find an efficient algorithm to process the above queries. Please help him!

Input

The first line contains t, the number of test cases (about 50). Then t test cases follow. Each test case has the following form:

  • The first line contains a number M, the maximum number of characters that can be put in a line.
  • The second line contains a number N, the number of words in the given paragraph.
  • The third line contains N numbers a1, a2, ..., aN, the lengths of the words in the paragraph.
  • The next lines contain the description of the queries, one query in a line. Each query can be of one of the following 3 types:
    • I i - Ask for the line number of the ith word.
    • C i l - Replace the ith word by a new word of length l (1 ≤ l ≤ M).
    • E - Signal the end of the description of the queries.

Note that the line numbers and the word indexes are counted from 1.

 

The input data for successive test cases is separated by a blank line.

Output

For each test case, the first line of output should contain the string "Case #T:" where T should be replaced by the corresponding test case number.

For every 'I' query in the test case, print the correct line number of the word being queried.

Print a blank line after each test case.

Constraints

  • 1 ≤ N ≤ 50000
  • 1 ≤ M ≤ 100000
  • 1 ≤ ai ≤ M
  • The number of lines in each paragraph never exceeds 200.
  • The number of queries in each test case does not exceed 10000.

Example

Input:
2

4
2
1 2
I 2
C 2 3
I 2
E

6
5
1 5 4 5 6
I 2
I 4
I 5
C 4 1
I 4
I 5
C 2 1
C 3 2
C 5 4
I 5
I 3
E

Output:
Case #1:
1
2

Case #2:
2
4
5
3
4
2
1

Discussion of the example

In the following description of the second exemplary test case, we use the digit i to denote a character of the ith word. Note that each line can hold at most 6 characters. Initially, the paragraph has the following form:

1
22222
3333
44444
555555

After replacing the 4thword with a one-character word, the paragraph becomes:

1
22222
3333 4
555555

After the last 3 replacements, the paragraph becomes:

1 2 33
4 5555


Date: 2009-09-15
Time limit: 3.5

s
Source limit: 50000
Languages: C C99 strict C++ PAS gpc PAS fpc JAVA NICE JAR C# C#2 NEM ST ASM D FORT ADA BASH PERL PYTH RUBY LUA ICON PIKE PHP SCM guile SCM qobi LISP sbcl LISP clisp SCALA HASK CAML CLPS PRLG WSPC BF ICK TEXT


  • Submit

Comments

  • Login or Register to post a comment.

Does TLE means, the answer is

sppraveen @ 2 Oct 2009 01:45 PM

Does TLE means,

the answer is right but the time limit exceeded?

No, it means your program has

triplem @ 2 Oct 2009 02:06 PM

No, it means your program has exceeded the time limit before it finished outputting an answer. So of course it can't tell whether it is correct or not.

If the last character of a

aditya_bhatt @ 3 Oct 2009 05:35 PM

If the last character of a word is at the end of a line, then does the next word have to start at the beginning of the next line, or must there be a space character at the beginning of the next line  - and then the new word?

The answer to your question

admin @ 3 Oct 2009 11:28 PM

The answer to your question can be found in the problem statement :)

can i write lenghts of all

rajul884 @ 4 Oct 2009 05:25 PM
can i write lenghts of all words in one line or in different line .

After no of test cases , is

sppraveen @ 4 Oct 2009 08:42 PM

After no of test cases , is there a blank line in the input?

 

After we print the output for the last test case, should there be a blank line?

Aniruddha (Codechef)

vish @ 5 Oct 2009 12:19 PM

Aniruddha (Codechef) :

yesterday night i solved this question (H5) and got accepted but still my score is 2.968 ........ It should be 3.968 ..... Plz chech my submission.

vikas IN (vish )

is there partial score for

vish @ 5 Oct 2009 12:22 PM

is there partial score for this ......

@vikas Will check this out.

admin @ 5 Oct 2009 02:56 PM

@vikas Will check this out. No, there is no partial score for this.

@vikas Could you submit the

admin @ 5 Oct 2009 03:00 PM

@vikas Could you submit the accepted solution again ?

@Aniruddha I think it may be

triplem @ 5 Oct 2009 03:47 PM

@Aniruddha I think it may be a problem with the scoreboard itself, my score for this problem and the challenge problem haven't updated either (and I solved them several hours ago).

Aniruddha (Codechef) -: sir,

vish @ 5 Oct 2009 05:13 PM
Aniruddha (Codechef) -: sir, I resubmitted my code still didnt change my score

We are looking into this.

admin @ 5 Oct 2009 05:15 PM

We are looking into this.

HI, I use C#, but read query

liubiaoyong @ 9 Oct 2009 09:55 PM

HI,

I use C#,

but read query error.

code as follow:

query_count = 0;
                    string qline = Console.ReadLine();
                    while (qline[0] != 'E')
                    {
                        try
                        {
                            string[] b = qline.Split(' ');
                            queries[query_count, 0] = qline[0]; // query_type;
                            queries[query_count, 1] = int.Parse(b[1]);
                            if (qline[0] == 'C')
                            {
                                queries[query_count, 2] = int.Parse(b[2]);
                            }
                            query_count++;
                            qline = Console.ReadLine();
                        }
                        catch (Exception ex)
                        {
                            throw new ApplicationException("1");
                        }
                    }

can anyone help me????

liubiaoyong @ 9 Oct 2009 10:03 PM

can anyone help me????

SUCCESSFUL SUBMISSIONS FOR THIS PROBLEM:

Programming Competition Fetching successful submissions
Directi Go for Gold
CodeChef is a global programming communityCodeChef hosts online programming competitions
CodeChef is a non-commercial competitive programming community
  • About CodeChef
  • About Directi
  • CEO's Corner
  • C-Programming
  • Programming Languages
  • Contact Us
© 2009 Directi Group. All Rights Reserved. CodeChef uses SPOJ © by Sphere Research Labs
In order to report copyright violations of any kind, send in an email to copyright@codechef.com
CodeChef a product of Directi
The time now is:
CodeChef - A Platform for Aspiring Programmers

CodeChef was created as a platform to help programmers make it big in the world of computer programming. At CodeChef we work hard to revive the geek in you by hosting programming contests on a monthly basis. We also aim to have training sessions and events related to online programming for programmers around the world. Apart from providing a platform for programming competitions, CodeChef also has various tutorials and forum discussions to help those who are new to the world of computer programming.

Practice Section - A Place to hone your 'Computer Programming Skills'

Try your hand at one of our many practice problems and submit your solution in a language of your choice. Our judge accepts solutions in over 35+ programming languages. Online programming was never this much fun! Receive points, and move up through the CodeChef ranks. Use our practice section to better prepare yourself for the multiple programming competitions that take place through-out the month on CodeChef.

Compete - Monthly Programming Contests and Cook-offs

Here is where you can show off your computer programming skills. Take part in our 10 day long monthly programming contests and the shorter format Cook-off programming contests. Put yourself up for recognition and win great prizes. Prizes worth up to Rs.20,000 and $700 are up for grabs every month along with lots more CodeChef goodies.

Discuss

Are you new to computer programming? Do you need help with algorithms? Then be part of CodeChefs Forums and interact with all our programmers love helping out other programmers and share their ideas.

CodeChef Community

As part of our Educational initiative, we give institutes the opportunity to associate with CodeChef in the form of Campus Chapters. Hosting online programming competitions is not the only feature on CodeChef. Be a part of the CodeChef community through CodeChef meetups and techtalks. You can also host a programming contest for your institute on CodeChef and be a guest author on our blog.

Domain Name Registration, Web hosting, and Website Design provided by BigRock.com