Problem C
Comma Sprinkler
Dr. Sprinkler’s rules for adding commas to an existing piece of text are as follows:
-
If a word anywhere in the text is preceded by a comma, find all occurrences of that word in the text, and put a comma before each of those occurrences, except in the case where such an occurrence is the first word of a sentence or already preceded by a comma.
-
If a word anywhere in the text is succeeded by a comma, find all occurrences of that word in the text, and put a comma after each of those occurrences, except in the case where such an occurrence is the last word of a sentence or already succeeded by a comma.
-
Apply rules $1$ and $2$ repeatedly until no new commas can be added using either of them.
As an example, consider the text
please sit spot. sit spot, sit. spot here now here.
Because there is a comma after spot in the second sentence, a comma should be added after spot in the third sentence as well (but not the first sentence, since it is the last word of that sentence). Also, because there is a comma before the word sit in the second sentence, one should be added before that word in the first sentence (but no comma is added before the word sit beginning the second sentence because it is the first word of that sentence). Finally, notice that once a comma is added after spot in the third sentence, there exists a comma before the first occurrence of the word here. Therefore, a comma is also added before the other occurrence of the word here. There are no more commas to be added so the final result is
please, sit spot. sit spot, sit. spot, here now, here.
Input
The input contains one line of text, containing at least $2$ characters and at most $1\, 000\, 000$ characters. Each character is either a lowercase letter, a comma, a period, or a space. We define a word to be a maximal sequence of letters within the text. The text adheres to the following constraints:
-
The text begins with a word.
-
Between every two words in the text, there is either a single space, a comma followed by a space, or a period followed by a space (denoting the end of a sentence and the beginning of a new one).
-
The last word of the text is followed by a period with no trailing space.
Output
Display the result after applying Dr. Sprinkler’s algorithm to the original text.
Sample Input 1 | Sample Output 1 |
---|---|
please sit spot. sit spot, sit. spot here now here. |
please, sit spot. sit spot, sit. spot, here now, here. |
Sample Input 2 | Sample Output 2 |
---|---|
one, two. one tree. four tree. four four. five four. six five. |
one, two. one, tree. four, tree. four, four. five, four. six five. |