#P1546. Password
Password
Password
题面翻译
你有 个灯泡,一开始都未点亮。
同时你有 个长度,分别为 。
每次你可以选择一段连续的子序列,且长度为某个 ,并将这些灯泡的明灭状态取反。
求最少的操作次数,使得最后有且仅有 个位置是亮的,这些位置已经给定,为 。
题目描述
Finally Fox Ciel arrived in front of her castle!
She have to type a password to enter her castle. An input device attached to her castle is a bit unusual.
The input device is a rectangle divided into square panels. They are numbered to from left to right. Each panel has a state either ON or OFF. Initially all panels are in the OFF state. She can enter her castle if and only if -th, -th, , -th panels are in the ON state and other panels are in the OFF state.
She is given an array , , . In each move, she can perform the following operation: choose an index ( ), choose consecutive panels, and flip the states of those panels (i.e. ON OFF, OFF ON).
Unfortunately she forgets how to type the password with only above operations. Determine the minimal number of operations required to enter her castle.
输入格式
The first line contains three integers , and ( ), separated by single spaces.
The second line contains integers , ..., ( 1<=x_{1}<x_{2}<...<x_{k}<=n ), separated by single spaces.
The third line contains integers , ..., ( ), separated by single spaces. It is possible that some elements of the array are equal value.
输出格式
Print the minimal number of moves required to type the password. If it's impossible, print -1.
样例 #1
样例输入 #1
10 8 2
1 2 3 5 6 7 8 9
3 5
样例输出 #1
2
样例 #2
样例输入 #2
3 2 1
1 2
3
样例输出 #2
-1
提示
One possible way to type the password in the first example is following: In the first move, choose 1st, 2nd, 3rd panels and flip those panels. In the second move, choose 5th, 6th, 7th, 8th, 9th panels and flip those panels.