Packing Rectangles

Problem:

Packing Rectangles
IOI 95
pack
The six basic layouts of four rectangles

Four rectangles are given. Find the smallest enclosing (new) rectangle into which these four may be fitted without overlapping. By smallest rectangle, we mean the one with the smallest area.

All four rectangles should have their sides parallel to the corresponding sides of the enclosing rectangle. Figure 1 shows six ways to fit four rectangles together. These six are the only possible basic layouts, since any other layout can be obtained from a basic layout by rotation or reflection. Rectangles may be rotated 90 degrees during packing.

There may exist several different enclosing rectangles fulfilling the requirements, all with the same area. You must produce all such enclosing rectangles.

PROGRAM NAME: packrec

INPUT FORMAT

Four lines, each containing two positive space-separated integers that represent the lengths of a rectangle's two sides. Each side of a rectangle is at least 1 and at most 50.

SAMPLE INPUT (file packrec.in)

1 2
2 3
3 4
4 5

OUTPUT FORMAT

The output file contains one line more than the number of solutions. The first line contains a single integer: the minimum area of the enclosing rectangles. Each of the following lines contains one solution described by two numbers p and q with p<=q. These lines must be sorted in ascending order of p, and must all be different.

SAMPLE OUTPUT (file packrec.out)

40
4 10
5 8

 

 


My Answer:


My Gain:

一开始发现题目给出的第四和第五种pack方式其实是一回事。
接着完全按照图上的四个矩形,编号i,j,k,l,边画图边写程序。
写好后发现,情况不完全。
后来在别人的博客里看到他使用了旋转,就想到,情况不完全无非是因为可以横着放也可以竖着放。
假如横的状态为1,竖的状态为0,很显然,四个矩形有2^4种情况,可由二进制进行演绎。
这样一来,作16次循环检验,就可以包括所有情况了,甚至还有重复。
另外需要注意的是,每次循环检验后,要记得还原四个矩形。

以下是一个基于 Python 的解法,使用 tkinter 库来实现可视化窗口显示。 思路: 1. 将所有矩形按面积从大到小排序 2. 遍历每个矩形,将其放入画布中最小的空白处 3. 重复步骤 2 直到所有矩形都被放置 代码如下: ```python import tkinter as tk # 矩形类 class Rectangle: def __init__(self, width, height): self.width = width self.height = height # 返回矩形面积 def area(self): return self.width * self.height # 获取矩形宽度和高度 def get_size(self): return (self.width, self.height) # 排列矩形 def pack_rectangles(rectangles): # 将矩形按面积从大到小排序 rectangles.sort(key=lambda r: r.area(), reverse=True) # 初始化画布 canvas_width = max(r.width for r in rectangles) canvas_height = sum(r.height for r in rectangles) canvas = tk.Canvas(root, width=canvas_width, height=canvas_height, bg="white") canvas.pack() # 遍历每个矩形 current_y = 0 for rectangle in rectangles: # 获取矩形宽度和高度 width, height = rectangle.get_size() # 查找最小空白处 x, y = find_empty_spot(canvas, width, height, current_y) # 将矩形放入画布 canvas.create_rectangle(x, y, x+width, y+height, fill="gray") current_y = y + height # 返回画布面积 return canvas_width * canvas_height # 查找最小空白处 def find_empty_spot(canvas, width, height, start_y): x = 0 y = start_y while True: # 查找下一个空白处 overlaps = canvas.find_overlapping(x, y, x+width, y+height) if not overlaps: return (x, y) # 如果当前位置已被占用,则移到下一行 x = canvas.bbox(overlaps[-1])[2] if x + width > canvas.winfo_width(): x = 0 y = canvas.bbox(overlaps[0])[3] # 创建矩形列表 rectangles = [Rectangle(60, 80), Rectangle(40, 100), Rectangle(80, 40), Rectangle(50, 50), Rectangle(100, 60)] # 排列矩形 canvas_area = pack_rectangles(rectangles) # 显示画布面积 print("Canvas area:", canvas_area) # 运行可视化窗口 root = tk.Tk() root.title("Packing Rectangles") root.mainloop() ``` 这段代码会创建一个可视化窗口,其中包含排列好的矩形。在运行时,程序会计算出画布的最小面积,并将其打印到控制台上。
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值