当前位置:网站首页>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
边栏推荐
- TS快速入门-泛型
- 力扣 1037.有效的回旋镖
- 力扣 1232.缀点成线
- 数据孤岛是企业数字化转型遇到的第一道险关
- 深度学习模型压缩与加速技术(七):混合方式
- 微服务远程Debug,Nocalhost + Rainbond微服务开发第二弹
- POJ 1742 Coins ( 单调队列解法 )「建议收藏」
- Open source heavy ware! Chapter 9 the open source project of ylarn causal learning of Yunji datacanvas company will be released soon!
- mock.js从对象数组中任选数据返回一个数组
- CSDN syntax description
猜你喜欢

Cloud component development and upgrading

力扣 2319. 判断矩阵是否是一个 X 矩阵

Machine learning notes - explore object detection datasets using streamlit

Classification automatique des cellules de modules photovoltaïques par défaut dans les images de lecture électronique - notes de lecture de thèse

MRS离线数据分析:通过Flink作业处理OBS数据

php 获取图片信息的方法

LeetCode力扣(剑指offer 36-39)36. 二叉搜索树与双向链表37. 序列化二叉树38. 字符串的排列39. 数组中出现次数超过一半的数字

使用高斯Redis实现二级索引

Openeuler prize catching activities, to participate in?

vulnhub之school 1
随机推荐
Traversal of Oracle stored procedures
【mysql篇-基础篇】事务
Detailed explanation of Flink parallelism and slot
力扣 912.排序数组
Graduation season | regretful and lucky graduation season
力扣 2319. 判断矩阵是否是一个 X 矩阵
一键部署Redis任意版本
[solution] package 'XXXX' is not in goroot
Chapter 20 using work queue manager (3)
多个线程之间如何协同
毕业季|遗憾而又幸运的毕业季
openEuler 有奖捉虫活动,来参与一下?
JVM GC垃圾回收简述
LeetCode_7_5
【STL】vector
gorilla官方:golang开websocket client的示例代码
LeetCode_ 7_ five
Cloud 组件发展升级
力扣 1037.有效的回旋镖
vulnhub之school 1