spoj#FORMAT. HTML Formatting
HTML Formatting
.example-table {
text-align: left;
margin-top: 10px;
width: 100%;
}
.example-table td {
vertical-align: top;
}
.section {
margin-top: 19px;
margin-bottom:19px;
}
.paragraph {
text-align: left;
margin-top: 10px;
margin-bottom: 10px;
}
.paragraph ul, .paragraph ol {
margin-top: 3px;
margin-bottom: 3px;
}
Description
You have been given formatted text and asked to converted it HTML.
Each character may be formatted as bold, italic, underlined, or some combination.
In HTML, content between < b > and < / b > tags is bold. Content between and tags is italic. Content between < u
>
and < / u > tags is underlined.
What is the minimum number of properly nested HTML tags needed to produce a given format?
For example, say we wanted to format < i >< b >LookAt< / b >Me< / i >!
</p>
- < b >< i >LookAt< / b >Me< / i >! has incorrectly nested tags.
- < b >< i >LookAt< / i >< / b >< i >Me< / i >! has correctly nested tags, but is longer</p>
than necessary.
- < i >< b >LookAt< / b >Me< / i >! is the shortest and uses the fewest number of tags.
Input
There will be a sequence of 1 to 20,000 numerals. Each numeral denotes the formatting at that position.
The example earlier would be given as 333333220.
- 0 - no formatting
- 1 - bold
- 2 - italic
- 3 - bold and italic
- 4 - underlined
- 5 - bold and underlined
- 6 - italic and underlined
- 7 - bold, italic, and underlined
The example earlier would be given as 333333220.
Output
The minimum number of < b >, < / b >, < i >, < / i >, < u >, and < / u > tags required.
Input | Input | Input | Input |
---|---|---|---|
01 |
333333220 |
00110066 |
12364012375303657213412303 |
Output | Output | Output | Output |
2 |
4 |
6 |
54 |