这题作为压轴题 想不出什么好的办法 只能暴力破了 时间复杂度为O(n^2) 应该会超时(哈哈哈哈哈哈哈)
#include<iostream>
#include<math.h>
using namespace std;
int map[100000][2];
void init(int& w,int& n){
cin>>w>>n; //输入宽度和图片数量
for(int i=0;i<n;i++)
cin>>map[i][0]>>map[i][1];
}
int game(int w,int n,int dele){
int currentWidth=w; // 当前行的可用高度
int currentMaxHeigh=0; //当前行的最大高度
int height=0; //总高度
for(int i=0;i<n;i++){
if(i==dele) //跳过该图片
continue;
if(currentWidth>map[i][0]) //可以铺下
{
currentWidth-=map[i][0];
if(map[i][1]>currentMaxHeigh)
currentMaxHeigh=map[i][1];
}
else if(currentWidth>0&¤tWidth<map[i][0]){ //当行不能铺下 要进行换行铺
//ceil()为向上取整函数
//floor() 为向下取整函数
if(ceil(currentWidth*1.0/map[i][0]*map[i][1])>currentMaxHeigh)
currentMaxHeigh=map[i][1];
height+=currentMaxHeigh;
currentWidth=w; //初始化操作
currentMaxHeigh=0;
}
}
if(currentWidth!=0) //表示一行没有铺满
height+=currentMaxHeigh;
return height;
}
int main(){
int n;
int w;
init(w,n); //初始化数据
int minResult=99999999;
int temp=0;
for(int i=0;i<n;i++){
temp=game(w,n,i);
if(temp<minResult)
minResult=temp;
}
cout<<minResult;
}