A10579 | Exams
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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 $a_{i}$ — 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 $a_{i}$ 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.
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 $a_{i}$ — 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 $a_{i}$ 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.
输入格式
The first line contains two integers $n$ and $m$ ( $1<=n,m<=10^{5}$ ) — the number of days in the exam period and the number of subjects.
The second line contains $n$ integers $d_{1},d_{2},...,d_{n}$ ( $0<=d_{i}<=m$ ), where $d_{i}$ is the number of subject, the exam of which can be passed on the day number $i$ . If $d_{i}$ equals 0, it is not allowed to pass any exams on the day number $i$ .
The third line contains $m$ positive integers $a_{1},a_{2},...,a_{m}$ ( $1<=a_{i}<=10^{5}$ ), where $a_{i}$ is the number of days that are needed to prepare before passing the exam on the subject $i$ .
The second line contains $n$ integers $d_{1},d_{2},...,d_{n}$ ( $0<=d_{i}<=m$ ), where $d_{i}$ is the number of subject, the exam of which can be passed on the day number $i$ . If $d_{i}$ equals 0, it is not allowed to pass any exams on the day number $i$ .
The third line contains $m$ positive integers $a_{1},a_{2},...,a_{m}$ ( $1<=a_{i}<=10^{5}$ ), where $a_{i}$ is the number of days that are needed to prepare before passing the exam on the subject $i$ .
输出格式
Print one integer — the minimum number of days in which Vasiliy can pass all exams. If it is impossible, print -1.
输入输出样例
输入 #1
7 2 0 1 0 2 1 0 2 2 1
输出 #1
5
输入 #2
10 3 0 0 1 2 3 0 2 0 1 2 1 1 4
输出 #2
9
输入 #3
5 1 1 1 1 1 1 5
输出 #3
-1
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.
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.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted