A9690 | New Year Shopping
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Dohyun is running a grocery store. He sells $n$ items numbered by integers from 1 to $n$ . The $i$ -th ( $1<=i<=n$ ) of them costs $c_{i}$ dollars, and if I buy it, my happiness increases by $h_{i}$ . Each item can be displayed only for $p$ units of time because of freshness. As Dohyun displays the $i$ -th item at time $t_{i}$ , the customers can buy the $i$ -th item only from time $t_{i}$ to time $t_{i}+(p-1)$ inclusively. Also, each customer cannot buy the same item more than once.
I'd like to visit Dohyun's grocery store and buy some items for the New Year Party, and maximize my happiness. Because I am a really busy person, I can visit the store only once, and for very short period of time. In other words, if I visit the store at time $t$ , I can only buy the items available at time $t$ . But I can buy as many items as possible, if the budget holds. I can't buy same item several times due to store rules. It is not necessary to use the whole budget.
I made a list of $q$ pairs of integers $(a_{j},b_{j})$ , which means I may visit the store at time $a_{j}$ , and spend at most $b_{j}$ dollars at the store. For each pair, I'd like to know the maximum happiness I can obtain. But there are so many pairs that I can't handle them. Can you help me?
I'd like to visit Dohyun's grocery store and buy some items for the New Year Party, and maximize my happiness. Because I am a really busy person, I can visit the store only once, and for very short period of time. In other words, if I visit the store at time $t$ , I can only buy the items available at time $t$ . But I can buy as many items as possible, if the budget holds. I can't buy same item several times due to store rules. It is not necessary to use the whole budget.
I made a list of $q$ pairs of integers $(a_{j},b_{j})$ , which means I may visit the store at time $a_{j}$ , and spend at most $b_{j}$ dollars at the store. For each pair, I'd like to know the maximum happiness I can obtain. But there are so many pairs that I can't handle them. Can you help me?
输入格式
The first line contains two space-separated integers $n$ and $p$ ( $1<=n<=4000$ , $1<=p<=10000$ ) — the number of items, and the display time of each item.
Next $n$ lines describe the items. The $i$ -th ( $1<=i<=n$ ) of them contains three space-separated integers $c_{i}$ , $h_{i}$ , $t_{i}$ ( $1<=c_{i},h_{i}<=4000$ , $1<=t_{i}<=10000$ ) — the cost of the $i$ -th item, the happiness of the $i$ -th item, and the time when the $i$ -th item starts to be displayed.
The next line contains an integer $q$ ( $1<=q<=20000$ )— the number of candidates.
Next $q$ lines describe the candidates. The $j$ -th ( $1<=j<=q$ ) of them contains two space-separated integers $a_{j}$ , $b_{j}$ ( $1<=a_{j}<=20000$ , $1<=b_{j}<=4000$ ) — the visit time and the budget for $j$ -th visit of store.
Next $n$ lines describe the items. The $i$ -th ( $1<=i<=n$ ) of them contains three space-separated integers $c_{i}$ , $h_{i}$ , $t_{i}$ ( $1<=c_{i},h_{i}<=4000$ , $1<=t_{i}<=10000$ ) — the cost of the $i$ -th item, the happiness of the $i$ -th item, and the time when the $i$ -th item starts to be displayed.
The next line contains an integer $q$ ( $1<=q<=20000$ )— the number of candidates.
Next $q$ lines describe the candidates. The $j$ -th ( $1<=j<=q$ ) of them contains two space-separated integers $a_{j}$ , $b_{j}$ ( $1<=a_{j}<=20000$ , $1<=b_{j}<=4000$ ) — the visit time and the budget for $j$ -th visit of store.
输出格式
For each candidate, print a single line containing the maximum happiness that I can obtain by buying some items.
输入输出样例
输入 #1
4 4 2 3 2 3 5 1 4 7 2 11 15 5 4 1 3 2 5 2 6 5 14
输出 #1
5 8 10 18
输入 #2
5 4 3 2 1 7 4 4 2 1 2 6 3 5 3 2 2 10 1 5 2 5 4 8 4 9 4 10 5 8 5 9 5 10 8 4 7 9
输出 #2
2 3 5 5 6 4 5 6 0 4
Consider the first sample.
1. At time 1, only the 2nd item is available. I can buy the 2nd item using 3 dollars and my happiness will increase by 5.
2. At time 2, the 1st, 2nd, and 3rd item is available. I can buy the 1st item using 2 dollars, and the 2nd item using 3 dollars. My happiness will increase by 3 + 5 = 8.
3. At time 2, the 1st, 2nd, and 3rd item is available. I can buy the 1st item using 2 dollars, and the 3nd item using 4 dollars. My happiness will increase by 3 + 7 = 10.
4. At time 5, the 1st, 3rd, and 4th item is available. I can buy the 1st item using 2 dollars, and the 4th item using 11 dollars. My happiness will increase by 3 + 15 = 18. Note that I don't need to use the whole budget in this case.
1. At time 1, only the 2nd item is available. I can buy the 2nd item using 3 dollars and my happiness will increase by 5.2. At time 2, the 1st, 2nd, and 3rd item is available. I can buy the 1st item using 2 dollars, and the 2nd item using 3 dollars. My happiness will increase by 3 + 5 = 8.
3. At time 2, the 1st, 2nd, and 3rd item is available. I can buy the 1st item using 2 dollars, and the 3nd item using 4 dollars. My happiness will increase by 3 + 7 = 10.
4. At time 5, the 1st, 3rd, and 4th item is available. I can buy the 1st item using 2 dollars, and the 4th item using 11 dollars. My happiness will increase by 3 + 15 = 18. Note that I don't need to use the whole budget in this case.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?