Zvonkec is yet another programmer employed in a small company. Every day he has to refactor one file of source code. Much to his dismay, the source is usually far from being clear and tidy. He is especially bothered by uneven indentation, i.e. the number of tabulators (tabs) indenting each line. Fortunately, his editor has a command to select a group of consecutive lines and add or delete a character from the start of each one. Help Zvonkec tidy up the code as quickly as possible.
You are given the number of lines
Zvonkec can execute any number of commands consisting of:
- selecting any number of consecutive lines
- adding or deleting a single tab to/from the front of each of the selected lines
The two actions above comprise a single command, regardless of the number of selected lines.
It should be noted that it is forbidden to delete more tabs from a line than are actually present at the start of a line, as the editor would start deleting characters other than tabs.
You are asked to calculate the minimum number of commands required to tidy up the code.
Input Specification
The first line of input contains a positive integer
The second line contains a sequence of
The third line contains a sequence of
Test cases worth
Output Specification
The first and only line of output must contain the required number, as specified in the problem statement.
Sample Input 1
3
3 4 5
6 7 8
Sample Output 1
3
Sample Input 2
4
1 2 3 4
3 1 1 0
Sample Output 2
6
Sample Input 3
4
5 4 5 5
1 5 0 1
Sample Output 3
10
Comments