CF-19B - Checkout Assistant(DP)

本文探讨了一个在杂货店结账时通过合理安排商品顺序来最小化付款金额的问题。通过分析每个商品的购买时间与所需支付的价格,提出了一种优化策略,旨在在最短时间内完成结账并最小化总支出。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

B - Checkout Assistant

Crawling in process...Crawling failedTime Limit:2000MS    Memory Limit:262144KB    64bit IO Format:%I64d & %I64u

Description

Bob came to a cash & carry store, put n items into his trolley, and went to the checkout counter to pay. Each item is described by its price ci and time ti in seconds that a checkout assistant spends on this item. While the checkout assistant is occupied with some item, Bob can steal some other items from his trolley. To steal one item Bob needs exactly 1 second. What is the minimum amount of money that Bob will have to pay to the checkout assistant? Remember, please, that it is Bob, who determines the order of items for the checkout assistant.

Input

The first input line contains number n (1 ≤ n ≤ 2000). In each of the following n lines each item is described by a pair of numbers ti, ci (0 ≤ ti ≤ 2000, 1 ≤ ci ≤ 109). If ti is 0, Bob won't be able to steal anything, while the checkout assistant is occupied with item i.

Output

Output one number — answer to the problem: what is the minimum amount of money that Bob will have to pay.

Sample Input

Input
4
2 10
0 20
1 5
1 3
Output
8
Input
3
0 1
0 10
0 100
Output
111

思路:简单01背包,不过要注意优化,就是题目中有说偷的时间只要1秒,所以当时间大于n秒时,他可以都所以物品,因此只要更新到 n就可以得到正确答案了。

 

仔细想想,记忆化搜索好像也行。

#include<iostream>
#include<algorithm>
#include<cstring>
#include<map>
using namespace std;
const long long oo=1e18;
const int mm=2005;
long long f[mm];
int m,x;
long long y,z;
int main()
{
  while(cin>>m)
  {
    f[0]=0;
    for(int i=1;i<mm;i++)
      f[i]=oo;
    for(int i=0;i<m;i++)
    {cin>>x>>y;
      int mid;
      for(int j=m;j>=0;j--)
      {
        if(j+x+1<m)mid=j+x+1;///时间大于m时,他可以偷所有物品因此只需到m就行
        else mid=m;
        if(f[j]+y<f[mid])///更新值
          f[mid]=f[j]+y;
      }
    }
    cout<<f[m]<<"\n";
  }
}


 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值