当前位置:网站首页>POJ 1742 coins (monotone queue solution) [suggestions collection]
POJ 1742 coins (monotone queue solution) [suggestions collection]
2022-07-07 20:16:00 【Full stack programmer webmaster】
Hello everyone , I meet you again , I'm the king of the whole stack .
Blog .
Plus, if the volume is equal to the value, it's better to do . Only j %v[ i ] The rest of the same ability can be handled at the same time (j It refers to the value of a certain volume ), When calculating a number , Just calculate the same remainder as before ( Within the number limit ) Is there a true( It's full ) You can .
Code :
#include<iostream>
#include<sstream>
#include<map>
#include<cmath>
#include<fstream>
#include<queue>
#include<vector>
#include<sstream>
#include<cstring>
#include<cstdio>
#include<stack>
#include<bitset>
#include<ctime>
#include<string>
#include<cctype>
#include<iomanip>
#include<algorithm>
using namespace std ;
#define INT long long int
#define L(x) (x * 2)
#define R(x) (x * 2 + 1)
const int INF = 0x3f3f3f3f ;
const double esp = 0.0000000001 ;
const double PI = acos(-1.0) ;
const int mod = 1000000007 ;
const int MY = (1<<5) + 5 ;
const int MX = 100010 + 5 ;
int n ,W ,ans ;
int v[MX] ,num[MX] ;
bool deq[MX] ,dp[MX] ;
void input()
{
memset(dp ,false ,sizeof(dp)) ;
for(int i = 1 ;i <= n ; ++i)
scanf("%d" ,&v[i]) ;
for(int i = 1 ;i <= n ; ++i)
scanf("%d" ,&num[i]) ;
}
void DP(int v ,int num)
{
if(!num || !v) return ;
if(num == 1) // 01 knapsack
{
for(int i = W ;i >= v ; --i)
if(!dp[i] && dp[i-v])
dp[i] = true ,ans++ ;
}
else if(num * v >= W) // It's all backpacks
{
for(int i = v ;i <= W ; ++i)
if(!dp[i] && dp[i-v])
dp[i] = true ,ans++ ;
}
else
{
num = min(num ,W/v) ;
for(int a = 0 ;a < v ; ++a) // Similarly, the remainder is processed together
{
int front =0 ,end = 0 ,sum = 0 ;
for(int j = a ;j <= W ; j += v)
{
if(end - front-1 == num) // Remove obsolete elements , Due to the most choices num[i] individual
sum -= deq[front++] ;
deq[end++] = dp[j] ; // Deposit in
sum += dp[j] ;
if(!dp[j] && sum)
dp[j] = true ,ans++ ;
}
}
}
}
int main()
{
//freopen("input.txt" ,"r" ,stdin) ;
while(scanf("%d%d" ,&n ,&W) ,n+W)
{
input() ;
dp[0] = true ;
ans = 0 ;
for(int i = 1 ;i <= n ; ++i)
DP(v[i] ,num[i]) ;
printf("%d\n" ,ans) ;
}
return 0 ;
}Publisher : Full stack programmer stack length , Reprint please indicate the source :https://javaforall.cn/116515.html Link to the original text :https://javaforall.cn
边栏推荐
- 写了个 Markdown 命令行小工具,希望能提高园友们发文的效率!
- 841. String hash
- 关于cv2.dnn.readNetFromONNX(path)就报ERROR during processing node with 3 inputs and 1 outputs的解决过程【独家发布】
- MSE API学习
- 【STL】vector
- Kubernetes -- detailed usage of kubectl command line tool
- Force buckle 1961 Check whether the string is an array prefix
- Some important knowledge of MySQL
- 国家网信办公布《数据出境安全评估办法》:累计向境外提供10万人信息需申报
- 841. 字符串哈希
猜你喜欢
随机推荐
关于自身的一些安排
vulnhub之tre1
Flink并行度和Slot详解
Implement secondary index with Gaussian redis
力扣 643. 子数组最大平均数 I
【Auto.js】自动化脚本
Oracle 存储过程之遍历
Classification automatique des cellules de modules photovoltaïques par défaut dans les images de lecture électronique - notes de lecture de thèse
机器学习笔记 - 使用Streamlit探索对象检测数据集
Force buckle 1232 Dotted line
[solution] package 'XXXX' is not in goroot
网络原理(1)——基础原理概述
Creation of kubernetes mysql8
YoloV6:YoloV6+Win10---训练自己得数据集
pom.xml 配置文件标签作用简述
力扣 459. 重复的子字符串
Vulnhub tre1
CJSON内存泄漏的注意事项
831. KMP string
How C language determines whether it is a 32-bit system or a 64 bit system


![[MySQL - Basic] transactions](/img/a4/52c4b156b107c1e2f0220b4379eab2.png)






