当前位置:网站首页>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
边栏推荐
猜你喜欢
[MySQL - Basic] transactions
开源重器!九章云极DataCanvas公司YLearn因果学习开源项目即将发布!
CSDN syntax description
CSDN语法说明
Vulnhub's funfox2
【mysql篇-基础篇】事务
模拟实现string类
Leetcode force buckle (Sword finger offer 36-39) 36 Binary search tree and bidirectional linked list 37 Serialize binary tree 38 Arrangement of strings 39 Numbers that appear more than half of the tim
力扣 2319. 判断矩阵是否是一个 X 矩阵
Mongodb由浅入深学习
随机推荐
【STL】vector
【剑指offer】剑指 Offer II 012. 左右两边子数组的和相等
Ways to improve the utilization of openeuler resources 01: Introduction
Gorilla official: sample code for golang to open websocket client
TS快速入门-泛型
Chapter 9 Yunji datacanvas company won the highest honor of the "fifth digital finance innovation competition"!
PHP method of obtaining image information
Equals method
【Auto.js】自动化脚本
线性基
编译器优化那些事儿(4):归纳变量
[auto.js] automatic script
JVM GC garbage collection brief
BI的边界:BI不适合做什么?主数据、MarTech?该如何扩展?
力扣 643. 子数组最大平均数 I
TS quick start - Generic
The boundary of Bi: what is bi not suitable for? Master data, Martech? How to expand?
关于cv2.dnn.readNetFromONNX(path)就报ERROR during processing node with 3 inputs and 1 outputs的解决过程【独家发布】
深度学习模型压缩与加速技术(七):混合方式
Mongodb由浅入深学习