LC 638. Shopping Offers
In LeetCode Store, there are some kinds of items to sell. Each item has a price.
However, there are some special offers, and a special offer consists of one or more different kinds of items with a sale price.
You are given the each item's price, a set of special offers, and the number we need to buy for each item. The job is to output the lowest price you have to pay for exactly certain items as given, where you could make optimal use of the special offers.
Each special offer is represented in the form of an array, the last number represents the price you need to pay for this special offer, other numbers represents how many specific items you could get if you buy this offer.
You could use any of special offers as many times as you want.
Example 1:
Input: [2,5], [[3,0,5],[1,2,10]], [3,2]
Output: 14
Explanation:
There are two kinds of items, A and B. Their prices are $2 and $5 respectively.
In special offer 1, you can pay $5 for 3A and 0B
In special offer 2, you can pay $10 for 1A and 2B.
You need to buy 3A and 2B, so you may pay $10 for 1A and 2B (special offer #2), and $4 for 2A.
Example 2:
Input: [2,3,4], [[1,1,0,4],[2,2,1,9]], [1,2,1]
Output: 11
Explanation:
The price of A is $2, and $3 for B, $4 for C.
You may pay $4 for 1A and 1B, and $9 for 2A ,2B and 1C.
You need to buy 1A ,2B and 1C, so you may pay $4 for 1A and 1B (special offer #1), and $3 for 1B, $4 for 1C.
You cannot add more items, though only $9 for 2A ,2B and 1C.
Note:
- There are at most 6 kinds of items, 100 special offers.
- For each item, you need to buy at most 6 of them.
- You are not allowed to buy more items than you want, even if that would lower the overall price.
Runtime: 53 ms, faster than 12.62% of Java online submissions for Shopping Offers.
自己的揭发,但是时间有点低,纯粹暴力搜索。
先把总的不加优惠券的价格算出来,然后每次遍历优惠券,直到不能再用优惠券。每次用优惠券都是DFS,且保存当前优化的结果,这又是BFS。
class Solution {
public int shoppingOffers(List<Integer> price, List<List<Integer>> special, List<Integer> needs) {
int maxval = 0;
int cnt = 0;
for(int x : needs){
maxval += x * price.get(cnt);
cnt++;
}
return helper(price, special, needs, maxval);
}
int helper(List<Integer> price, List<List<Integer>> special, List<Integer> needs, int maxval){
int tmpmax = maxval;
for(int i=0; i<special.size(); i++){
List<Integer> newneeds = new ArrayList<>();
for(int n : needs) newneeds.add(n);
boolean canuse = true;
int delta = maxval;
for(int j=0; j<special.get(i).size()-1; j++){
if(newneeds.get(j) < special.get(i).get(j)){
canuse = false;
break;
}else {
delta -= special.get(i).get(j) * price.get(j);
newneeds.set(j, newneeds.get(j) - special.get(i).get(j));
}
}
if(canuse) {
delta += special.get(i).get(special.get(i).size()-1);
tmpmax = Math.min(tmpmax, helper(price, special, newneeds, delta));
}
}
return tmpmax;
}
}
一个更好的解法
Runtime: 12 ms, faster than 90.29% of Java online submissions for Shopping Offers.
优化解法,
1. 遍历的时候,可以记录当前index,也就是说不需要每次从头遍历,因为只是使用优惠券顺序的关系而已。
2. 我之前会用backtracking偷懒只用一个needs,用到了set,这十分费时。直接开一个新的newneeds,每次用add,效果十分好。
class Solution {
public int shoppingOffers(List<Integer> price, List<List<Integer>> special, List<Integer> needs) {
int maxval = 0;
int cnt = 0;
for(int x : needs){
maxval += x * price.get(cnt);
cnt++;
}
return helper(price, special, needs, maxval,0);
}
int helper(List<Integer> price, List<List<Integer>> special, List<Integer> needs, int maxval, int spindex){
int tmpmax = maxval;
// StringBuilder sb = new StringBuilder();
// for(int i=0; i<needs.size(); i++){
// sb.append(needs.get(i));
// sb.append("+");
// }
// if(mp.containsKey(sb.toString())) return mp.get(sb.toString());
for(int i=spindex; i<special.size(); i++){
//List<Integer> newneeds = new ArrayList<>();
//for(int n : needs) newneeds.add(n);
//if(special.get(i).get(special.get(i).size()-1) <= maxval - tmpmax) continue;
//boolean canuse = true;
int delta = maxval;
List<Integer> newneeds = new ArrayList<>();
for(int j=0; j<special.get(i).size()-1; j++){
//if(newneeds.get(j) < special.get(i).get(j)){
if(needs.get(j) < special.get(i).get(j)){
//canuse = false;
newneeds = null;
break;
//needs.set(j, needs.get(j) - special.get(i).get(j));
}else {
delta -= special.get(i).get(j) * price.get(j);
newneeds.add(needs.get(j) - special.get(i).get(j));
//newneeds.set(j, newneeds.get(j) - special.get(i).get(j));
//needs.set(j, needs.get(j) - special.get(i).get(j));
}
}
if(newneeds != null) {
delta += special.get(i).get(special.get(i).size()-1);
tmpmax = Math.min(tmpmax, helper(price, special, newneeds, delta, i));
}
// for(int k=0; k<special.get(i).size()-1; k++){
// needs.set(k, needs.get(k) + special.get(i).get(k));
// }
}
// sb = new StringBuilder();
// for(int k=0; k<needs.size(); k++){
// sb.append(k);
// sb.append("+");
// }
// mp.put(sb.toString(), maxval);
return tmpmax;
}
}
LC 638. Shopping Offers的更多相关文章
- LeetCode 638 Shopping Offers
题目链接: LeetCode 638 Shopping Offers 题解 dynamic programing 需要用到进制转换来表示状态,或者可以直接用一个vector来保存状态. 代码 1.未优 ...
- Week 9 - 638.Shopping Offers - Medium
638.Shopping Offers - Medium In LeetCode Store, there are some kinds of items to sell. Each item has ...
- 638. Shopping Offers
In LeetCode Store, there are some kinds of items to sell. Each item has a price. However, there are ...
- 【leetcode】638. Shopping Offers
题目如下: In LeetCode Store, there are some kinds of items to sell. Each item has a price. However, ther ...
- 【LeetCode】638. Shopping Offers 解题报告(Python & C++)
作者: 负雪明烛 id: fuxuemingzhu 个人博客: http://fuxuemingzhu.cn/ 目录 题目描述 题目大意 解题方法 DFS 回溯法 日期 题目地址:https://le ...
- Leetcode之深度优先搜索&回溯专题-638. 大礼包(Shopping Offers)
Leetcode之深度优先搜索&回溯专题-638. 大礼包(Shopping Offers) 深度优先搜索的解题详细介绍,点击 在LeetCode商店中, 有许多在售的物品. 然而,也有一些大 ...
- 洛谷P2732 商店购物 Shopping Offers
P2732 商店购物 Shopping Offers 23通过 41提交 题目提供者该用户不存在 标签USACO 难度提高+/省选- 提交 讨论 题解 最新讨论 暂时没有讨论 题目背景 在商店中, ...
- poj 1170 Shopping Offers
Shopping Offers Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 4696 Accepted: 1967 D ...
- USACO 3.3 Shopping Offers
Shopping OffersIOI'95 In a certain shop, each kind of product has an integer price. For example, the ...
随机推荐
- C#面向对象 (访问修饰符、封装、继承、多态)
先看一下创建一个新项目时的基本格式 using System; using System.Collections.Generic; using System.Linq; //引用的命名空间 using ...
- 【loj#2133 && luoguP2178】[NOI2015]品酒大会
题目传送门:loj#2133 luoguP2178 简要题意:给定一个字符串\(s\),每个后缀都有权值,对于每个长度\(len\),求出所有最长公共前缀\(\geq len\)的后缀对的总数 ...
- ulimit 命令详解 socket查看linux最大文件打开数
ulimit 命令详解 Linux对于每个用户,系统限制其最大进程数.为提高性能,可以根据设备资源情况,设置各linux 用户的最大进程数 可以用ulimit -a 来显示当前的各种用户进程限 ...
- list列表的使用
Python最常用的数据类型之一,通过列表可以对数据实现最方便的存储.修改等操作 list1 = [1,2,3,4,5,6,7,8,9] #创建列表 z = list([1,2,3,4,5,6,7,8 ...
- TouchGFX版本
TouchGFX 4.12.3版本 本文概述了TouchGFX 4.12.3版本,其总体功能以及如何与CubeMX和CubeIDE集成. 总览 有关4.12.3新增功能的一般概述,请查看发行版中的ch ...
- Linux--查询文件的第几行到第几行命令
cat catalina.out | tail -n +14000 | head -n 10000 | sort | uniq -c linux 如何显示一个文件的某几行(中间几行)[一]从第3000 ...
- appium连接Android真机,并调试
Android真机:华为pad2 Android和Windows连接同一个局域网 连接USB Android机设置: 打开USB调试 cmd>adb devices,显示Android序列号 , ...
- awk的妙用
终端形式 有人说awk的优势在于可以个性化输出命令,这么说来太抽象了,假如我们查看占用6379端口的进程信息. lsof -i: 输出结果: COMMAND PID USER FD TYPE DEVI ...
- 关于b站爬虫的尝试(一)
由于b站爬虫难度较小(url地址主要通过av定位),我第一的爬虫尝试就选择了b站 以下为初步的尝试. 首先,由于初步统计,b站空视频(已下架或者删除)的比例大概是百分之五十(统计样本基本在前几年的视频 ...
- Java8-Stream-No.11
import java.util.Arrays; import java.util.List; public class Streams11 { static class Person { Strin ...