You are given a sequence of balls
A by your teacher, each labeled with a lowercase Latin letter 'a'-'z'. You don't like the given sequence. You want to change it into a new sequence,
B that suits you better. So, you allow yourself four operations:
- You can insert any ball with any label into the sequence at any position.
- You can delete (remove) any ball from any position.
- You can replace any ball with any other ball.
- You can exchange (swap) two adjacent balls.
Your teacher now places time constraints on each operation, meaning that an operation can only be performed in certain time. So, the first operation takes time
ti, the second one takes
td, the third one takes
tr and the fourth one takes
te. Also, it is given that
2·te≥ti+td.
Find the minimal time to convert the sequence
A to the sequence
B.
Note
In the second sample, you could delete the ball labeled 'a' from the first position and then insert another 'a' at the new second position with total time 6. However exchanging the balls give total time 3.