CF79D.Password

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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 1×n1×n rectangle divided into nn square panels. They are numbered 11 to nn 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 x1x_{1} -th, x2x_{2} -th, ...... , xkx_{k} -th panels are in the ON state and other panels are in the OFF state.

She is given an array a1a_{1} , ...... , ala_{l} . In each move, she can perform the following operation: choose an index ii ( 1<=i<=l1<=i<=l ), choose consecutive aia_{i} 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 nn , kk and ll ( 1<=n<=10000,1<=k<=10,1<=l<=1001<=n<=10000,1<=k<=10,1<=l<=100 ), separated by single spaces.

The second line contains kk integers x1x_{1} , ..., xkx_{k} ( 1<=x_{1}<x_{2}<...<x_{k}<=n ), separated by single spaces.

The third line contains ll integers a1a_{1} , ..., ala_{l} ( 1<=ai<=n1<=a_{i}<=n ), separated by single spaces. It is possible that some elements of the array aia_{i} are equal value.

输出格式

Print the minimal number of moves required to type the password. If it's impossible, print -1.

输入输出样例

  • 输入#1

    10 8 2
    1 2 3 5 6 7 8 9
    3 5
    

    输出#1

    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.

首页