#P8184. [USACO22FEB] Photoshoot 2 B
[USACO22FEB] Photoshoot 2 B
题目描述
In what seems to be a familiar occurrence, Farmer John is lining up his cows , conveniently numbered , for a photograph. Initially, the cows are lined up in the order from left to right. Farmer John's goal is to line up the cows in the order from left to right. To accomplish this, he may perform a series of modifications to the ordering. Each modification consists of choosing a single cow and moving it some number of positions to the left.
Please count the minimum number of modifications required in order for Farmer John to line up his cows in the desired order.
输入格式
The first line of input contains . The second line contains . The third line contains .
输出格式
Print the minimum number of modifications required to produce Farmer John's desired ordering.
5
1 2 3 4 5
1 2 3 4 5
0
5
5 1 3 2 4
4 5 2 1 3
2
提示
【样例解释 1】
In this example, the cows are already in the desired order, so no modifications are required.
【样例解释 2】
In this example, two modifications suffice. Here is one way Farmer John can rearrange his cows:
- Choose cow and move it four positions to the left.
- Choose cow and move it two positions to the left.
5 1 3 2 4
-> 4 5 1 3 2
-> 4 5 2 1 3
【数据范围】
- Test cases 3-6 satisfy .
- Test cases 7-10 satisfy .
- Test cases 11-14 satisfy no additional constraints.