GUPTA MECHANICAL

IN THIS WEBSITE I CAN TELL ALL ABOUT TECH. TIPS AND TRICKS APP REVIEWS AND UNBOXINGS ALSO TECH. NEWS .............

Sunday 10 July 2022

[Solution] Polycarp Writes a String from Memory Codeforces Solution


B. Polycarp Writes a String from Memory
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Polycarp has a poor memory. Each day he can remember no more than 3 of different letters.

Polycarp wants to write a non-empty string of s consisting of lowercase Latin letters, taking minimum number of days. In how many days will he be able to do it?

Polycarp initially has an empty string and can only add characters to the end of that string.

For example, if Polycarp wants to write the string lollipops, he will do it in 2 days:

  • on the first day Polycarp will memorize the letters loi and write lolli;
  • On the second day Polycarp will remember the letters pos, add pops to the resulting line and get the line lollipops.


Solution Click Below:-  👉CLICK HERE👈
👇👇👇👇👇

If Polycarp wants to write the string stringology, he will do it in 4 days:

  • in the first day will be written part str;
  • on day two will be written part ing;
  • on the third day, part of olog will be written;
  • on the fourth day, part of y will be written.


For a given string s, print the minimum number of days it will take Polycarp to write it.

Input

The first line of input data contains a single integer t (1t104) — the number of test cases.

Each test case consists of a non-empty string s consisting of lowercase Latin letters (the length of the string s does not exceed 2105) — the string Polycarp wants to construct.

It is guaranteed that the sum of string lengths s over all test cases does not exceed 2105.

Output

For each test case, print a single number — minimum number of days it will take Polycarp to write the string s from memory.


No comments:

Post a Comment