cf div2 D. Exams

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
Copy
7 2
0 1 0 2 1 0 2
2 1
Output
Copy
5
Input
Copy
10 3
0 0 1 2 3 0 2 0 1 2
1 1 4
Output
Copy
9
Input
Copy
5 1
1 1 1 1 1
5
Output
Copy
-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.

扫描二维码关注公众号,回复: 102213 查看本文章

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

思路:

        首先这是一个序列题,求最小的天数,只要我们可以找到一种O(n)的判断方法,我们就可以二分,很明显我们只要找出每一科最迟考的天数,就可以贪心。

#include<stdio.h>
#include<iostream>
#include<string.h>
#include<string>
#include<algorithm>
using namespace std;
typedef long long LL;
LL n,m,arr1[100100],arr2[100100],book[100100];
struct node{
    int i;
    int v;
    node(int a,int b)
    {
        i=a;
        v=b;
    }
    node(){}
}sta[100100];
int pang(int x)
{
    memset(book,0,sizeof(book));
    int temp;
    int shu=0,top=0,flag;
    for(int i=x;i>=1;i--)
    {
        if(arr1[i]!=0&&!book[arr1[i]])
        {
            sta[++top].v=arr1[i];
            sta[top].i=i;
            book[arr1[i]]=1;
            shu++;
        }
        if(shu==m)
            break;
    }
    if(shu<m)
        return 0;
    else
    {
        temp=sta[top].i-1;
        while(top>=2)
        {
            if(temp<arr2[sta[top].v])
                return 0;
            else
            {
                temp-=arr2[sta[top].v];
                temp+=sta[top-1].i-sta[top].i-1;
                top--;
            }
        }
        if(arr2[sta[1].v]<=temp)
            return 1;
        else
            return 0;
    }
}
int main()
{
   scanf("%I64d%I64d",&n,&m);
   for(int i=1;i<=n;i++)
        scanf("%I64d",&arr1[i]);
   for(int i=1;i<=m;i++)
        scanf("%I64d",&arr2[i]);
   int l=1,r=n,ans=0;
   while(l<=r)
   {
       int mid=l+(r-l)/2;
       if(pang(mid))
            r=mid-1,ans=mid;
       else
            l=mid+1;
   }
   if(ans==0)
        cout<<-1<<endl;
   else
        cout<<ans<<endl;
   return 0;
}

猜你喜欢

转载自blog.csdn.net/fbher/article/details/80172469