[POI2007]ODW-Weights(贪心)

在byteotian公司搬家的时候,他们发现他们的大量的精密砝码的搬运是一件恼人的工作。公司有一些固定容量的容器可以装这些砝码。他们想装尽量多的砝码以便搬运,并且丢弃剩下的砝码。每个容器可以装的砝码数量有限制,但是他们能够装的总重量不能超过每个容器的限制。一个容器也可以不装任何东西。任何两个砝码都有一个特征,他们的中总有一个的重量是另外一个的整数倍,当然他们也可能相等。

Solution

关键的地方就是任意两个物品之间都是整数倍之间的关系。

我们可以吧每个容器k进制拆分,那么我们把物品从小到大依次加入,如果当前位不满足,就从高位借。

Code

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cmath>
#define N 100002
using namespace std;
int a[N],b[N],c[N],tot,d[N],ji[N],n,m;
int dfs(int id){
    if(id>tot)return 0;
    if(d[id])return d[id]--,1;
    if(dfs(id+1)){
      d[id]+=c[id+1]/c[id],d[id]--;
      return 1;
    }
    return 0;
}
int main(){
    scanf("%d%d",&n,&m);
    for(int i=1;i<=n;++i)scanf("%d",&a[i]);
    for(int i=1;i<=m;++i)scanf("%d",&b[i]);
    sort(b+1,b+m+1);
    for(int i=1;i<=m;++i){
        if(b[i]!=b[i-1])c[++tot]=b[i];
        ji[i]=tot;
    }
    for(int i=1;i<=n;++i)
     for(int j=tot;j>=1;--j){
         d[j]+=a[i]/c[j];a[i]%=c[j];
     }
     int now=1;
    for(int i=1;i<=m;++i){
        if(!dfs(ji[i])){
            printf("%d",i-1);
            return 0;
        }
        if(i==m)cout<<m;
    }
    return 0;
} 

原文地址:https://www.cnblogs.com/ZH-comld/p/9866584.html

时间: 2024-10-15 21:29:58

[POI2007]ODW-Weights(贪心)的相关文章

【BZOJ1110】[POI2007]砝码Odw 贪心

[BZOJ1110][POI2007]砝码Odw Description 在byteotian公司搬家的时候,他们发现他们的大量的精密砝码的搬运是一件恼人的工作.公司有一些固定容量的容器可以装这些砝码.他们想装尽量多的砝码以便搬运,并且丢弃剩下的砝码.每个容器可以装的砝码数量有限制,但是他们能够装的总重量不能超过每个容器的限制.一个容器也可以不装任何东西.任何两个砝码都有一个特征,他们的中总有一个的重量是另外一个的整数倍,当然他们也可能相等. Input 第一行包含两个数n和m.表示容器的数量以

BZOJ 1110: [POI2007]砝码Odw( 贪心 )

ORZjcvb... 1 #include<bits/stdc++.h> 2 3 using namespace std; 4 5 const int maxn = 100009; 6 7 int N, M, item[maxn], V[maxn]; 8 vector<int> o, cnt, Div; 9 10 int main() { 11 12 cin >> N >> M; 13 for(int i = 0; i < N; i++) 14 sca

BZOJ 1110: [POI2007]砝码Odw

1110: [POI2007]砝码Odw Time Limit: 10 Sec  Memory Limit: 162 MBSubmit: 547  Solved: 296[Submit][Status][Discuss] Description 在byteotian公司搬家的时候,他们发现他们的大量的精密砝码的搬运是一件恼人的工作.公司有一些固定容量的容器可以装这些砝码.他们想装尽量多的砝码以便搬运,并且丢弃剩下的砝码.每个容器可以装的砝码数量有限制,但是他们能够装的总重量不能超过每个容器的限制

BZOJ1110 : [POI2007]砝码Odw

砝码从小到大放最优,二分答案mid,转化为判定前mid小的砝码能否放完. 从大到小考虑砝码,依次扫描每个容器,能放就放. 由于砝码重量都成倍数关系,所以最多只有$O(\log n)$种不同的数字,所以总复杂度为$O(n\log^2n)$. #include<cstdio> #include<algorithm> #define N 100010 int n,m,i,j,k,t,a[N],b[N],c[N],l,r,mid,ans; inline void read(int&

POJ1862 Stripies 【贪心】

Stripies Time Limit: 1000MS   Memory Limit: 30000K Total Submissions: 12522   Accepted: 5929 Description Our chemical biologists have invented a new very useful form of life called stripies (in fact, they were first called in Russian - polosatiki, bu

高级算法——贪心算法(背包问题)

贪心算法不能用来解决离散物品问题的原因是我们无法将“ 半台电视” 放入背包. 规则是按照物品价值高低顺序放入背包. function ksack(values, weights, capacity) { var load = 0; var i = 0; var v = 0; while (load < capacity && i < weights.length) { if (weights[i] <= (capacity - load)) { v += values[i

Duff and Weight Lifting_贪心

Duff and Weight Lifting TimeLimit:1000MS  MemoryLimit:256MB 64-bit integer IO format:%I64d Problem Description Recently, Duff has been practicing weight lifting. As a hard practice, Malek gave her a task. He gave her a sequence of weights. Weight of 

C语言贪心(2)___田忌赛马(Hdu 1052)

Problem Description Here is a famous story in Chinese history. "That was about 2300 years ago. General Tian Ji was a high official in the country Qi. He likes to play horse racing with the king and others." "Both of Tian and the king have t

田忌赛马 南阳oj364 【贪心】

描述 Here is a famous story in Chinese history. "That was about 2300 years ago. General Tian Ji was a high official in the country Qi. He likes to play horse racing with the king and others." "Both of Tian and the king have three horses in di