CCC '19 J3 - Cold Compress

View as PDF

Submit solution

Points: 5
Time limit: 1.0s
Memory limit: 256M

Problem type
Canadian Computing Competition: 2019 Stage 1, Junior #3

Your new cellphone plan charges you for every character you send from your phone. Since you tend to send sequences of symbols in your messages, you have come up with the following compression technique: for each symbol, write down the number of times it appears consecutively, followed by the symbol itself. This compression technique is called run-length encoding.

More formally, a block is a substring of identical symbols that is as long as possible. A block will be represented in compressed form as the length of the block followed by the symbol in that block. The encoding of a string is the representation of each block in the string in the order in which they appear in the string.

Given a sequence of characters, write a program to encode them in this format.

Input Specification

The first line of input will contain the number N, which is the number of lines that follow. The next N lines will contain at least one and at most 80 characters, none of which are spaces.

Output Specification

Output will be N lines. Line i of the output will be the encoding of the line i + 1 of the input. The encoding of a line will be a sequence of pairs, separated by a space, where each pair is an integer (representing the number of times the character appears consecutively) followed by a space, followed by the character.

Sample Input

4
+++===!!!!
777777......TTTTTTTTTTTT
(AABBC)
3.1415555

Output for Sample Input

3 + 3 = 4 !
6 7 6 . 12 T
1 ( 2 A 2 B 1 C 1 )
1 3 1 . 1 1 1 4 1 1 4 5

Explanation of Output for Sample Input

To see how the first message (on the second line of input) is encoded, notice that there are 3 + symbols, followed by 3 = symbols, followed by 4 ! symbols.


Comments


  • -20
    The5thHorse  commented on Sept. 21, 2022, 4:09 a.m.

    This comment is hidden due to too much negative feedback. Show it anyway.


    • -1
      Meh494  commented on Sept. 23, 2022, 3:45 a.m. edited

      To see how the first message (on the second line of input) is encoded, notice that there are 3 + symbols, followed by 3 = symbols, followed by 4 ! symbols.


  • 5
    Eddie671829  commented on Aug. 17, 2022, 2:22 a.m.

    1w1h1a1t 1a1n 1o2p1o1s1i1t1e 1o1f(what an opposite of):

    https://dmoj.ca/problem/ccc19j2


  • 29
    0Power10  commented on July 23, 2021, 6:58 p.m.

    Me after seeing the title: ah this must have something to do with medical stuff! me after reading the question: what does this have to do with anything?


  • -2
    CountT  commented on Feb. 16, 2021, 2:23 a.m.

    Can someone explain why I got AC on DMOJ but not on the CCC grader? Thanks!


    • -3
      qiao_yun20060930  commented on April 26, 2021, 7:41 p.m.

      first congrats to all ac on dmoj, and your question is caused by: there are probably different samples, ccc grader has more accurate samples but dmoj's sample maybe a little bit easier and not like that complicated, just my guess, hope this helps


  • 48
    tappbros  commented on July 28, 2020, 1:27 a.m.

    Wow, so we have to pay every time we type. Why did we even get this plan.


  • 3
    ryan20070709  commented on Dec. 9, 2019, 12:18 a.m. edited

    how do you check someone else submissions?


    • 27
      AlanL  commented on Dec. 9, 2019, 2:12 a.m.

      You can only check other's submissions if you have solved the problem yourself, and once you do a view button will appear on anyone else's submission so you can see it.


  • 79
    GD_FrostByte  commented on Oct. 13, 2019, 2:11 p.m. edited

    3+3=4

    h m m


    • 7
      ASDAN149A  commented on Jan. 16, 2021, 7:31 a.m.

      It would be correct if there're only 3 '!' XD


    • 7
      Jinx  commented on April 28, 2020, 8:45 p.m.

      I knew someone was gonna say that XD