第八届蓝桥杯c语言c组最后一题

这题作为压轴题 想不出什么好的办法 只能暴力破了 时间复杂度为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&&currentWidth<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;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值