Tabovi
의견: 0
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 \(N\), a sequence specifying the current number of tabs at the start of each line, and a sequence specifying the required number of tabs at the start of each line.
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.
Test cases worth 70% of total points have N not greater than 100.
The first line of input contains a positive integer \(N\) (\(N \le 1000\)).
The second line contains a sequence of \(N\) integers \(P_i\) (\(0 \le P_i \le 80\)), specifying the number of tabs at the start of the \(i\)-th line before any editing.
The third line contains a sequence of \(N\) integers \(K_i\) (\(0 \le K_i \le 80\)), specifying the number of tabs that Zvonkec would like at the start of the \(i\)-th line.
The first and only line of output must contain the required number, as specified in the problem statement.
Scoring: Test cases worth \(70\%\) of total points have \(N\) not greater than \(100\).
| 서브태스크 | 점수 | 설명 |
|---|---|---|
Test 1 | 10점 | None |
Test 2 | 10점 | None |
Test 3 | 10점 | None |
Test 4 | 10점 | None |
Test 5 | 10점 | None |
Test 6 | 10점 | None |
Test 7 | 10점 | None |
Test 8 | 10점 | None |
Test 9 | 10점 | None |
Test 10 | 10점 | None |
3
3 4 5
6 7 834
1 2 3 4
3 1 1 064
5 4 5 5
1 5 0 110평가 및 의견
Tabovi
Log in to rate problems.
아직 의견이 없습니다. 자격이 된다면 위 양식에서 가장 먼저 평가해 보세요.
풀이 제출
Tabovi