CodeForces

来源:互联网 发布:移动4g网络怎么设置dns 编辑:程序博客网 时间:2024/06/06 05:03

D. Exams
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Vasiliy has an exam period which will continue for n days. He has to pass exams on m subjects. Subjects are numbered from 1 to m.

About every day we know exam for which one of m subjects can be passed on that day. Perhaps, some day you can't pass any exam. It is not allowed to pass more than one exam on any day.

On each day Vasiliy can either pass the exam of that day (it takes the whole day) or prepare all day for some exam or have a rest.

About each subject Vasiliy know a number ai — the number of days he should prepare to pass the exam number i. Vasiliy can switch subjects while preparing for exams, it is not necessary to prepare continuously during ai days for the exam number i. He can mix the order of preparation for exams in any way.

Your task is to determine the minimum number of days in which Vasiliy can pass all exams, or determine that it is impossible. Each exam should be passed exactly one time.

Input

The first line contains two integers n and m (1 ≤ n, m ≤ 105) — the number of days in the exam period and the number of subjects.

The second line contains n integers d1, d2, ..., dn (0 ≤ di ≤ m), where di is the number of subject, the exam of which can be passed on the day number i. If di equals 0, it is not allowed to pass any exams on the day number i.

The third line contains m positive integers a1, a2, ..., am (1 ≤ ai ≤ 105), where ai is the number of days that are needed to prepare before passing the exam on the subject i.

Output

Print one integer — the minimum number of days in which Vasiliy can pass all exams. If it is impossible, print -1.

Examples
input
7 20 1 0 2 1 0 22 1
output
5
input
10 30 0 1 2 3 0 2 0 1 21 1 4
output
9
input
5 11 1 1 1 15
output
-1
Note

In the first example Vasiliy can behave as follows. On the first and the second day he can prepare for the exam number 1 and pass it on the fifth day, prepare for the exam number 2 on the third day and pass it on the fourth day.

In the second example Vasiliy should prepare for the exam number 3 during the first four days and pass it on the fifth day. Then on the sixth day he should prepare for the exam number 2 and then pass it on the seventh day. After that he needs to prepare for the exam number 1 on the eighth day and pass it on the ninth day.

In the third example Vasiliy can't pass the only exam because he hasn't anough time to prepare for it.



题意:给定n天和m个考试,每个考试都需要一定的天数进行复习,这个考试的人很调皮想着早点考完就能早点回家了,问他最快在第几天考完,不能考完输出-1。


思路:二分每一天,看这天是不是能考完。

判断能考完的方法:从这天向前遍历,若这天有考试且这个考试没考过,我们就考它,若这天没有考试,我们就复习。

注意复习必须是在有考试的情况下,若还没有待考的考试,就没法复习。

#include <iostream>#include <cstdio>#include <algorithm>#include <cstring>#include <queue>#include <stack>#include <map>#include <cmath>#include <vector>#define max_ 100010#define inf 0x3f3f3f3f#define ll long long#define mod (1000000007)using namespace std;int n,m;int num[max_],need[max_],vis[max_];bool judge(int x){    int cnt=0,k=0;    memset(vis,false,sizeof(vis));    for(int i=x;i>=1;i--)    {        if(num[i]!=0&&vis[num[i]]==false)        {            cnt+=need[num[i]];            vis[num[i]]=true;            k++;        }        else if(cnt)        {            cnt--;        }    }    if(k==m&&!cnt)    return true;    else    return false;}int main(int argc, char const *argv[]) {    cin>>n>>m;    for(int i=1;i<=n;i++)    {        cin>>num[i];    }    for(int i=1;i<=m;i++)    {        cin>>need[i];    }    int l=1,r=n,ans=-1;    while(l<=r)    {        int mid=(l+r)/2;        if(judge(mid))        {            ans=mid;            r=mid-1;        }        else        {            l=mid+1;        }    }    printf("%d\n",ans);    return 0;}


原创粉丝点击