Chainsaw Massacre

2020年1月17日 982点热度 0人点赞 0条评论

Chainsaw Massacre

时间: 1ms        内存:64M

描述:

The Canadian Lumberjack Society has just held its annual woodcutting competition and the national forests between Montreal and Vancouver are devastated. Now for the social part! In order to lay out an adequate dance floor for the evening party the organizing committee is looking for a large rectangular area without trees. All lumberjacks are already drunk and nobody wants to take the risk of having any of them operate a chainsaw.

The organizing committee has asked you to find the largest free rectangular region which can serve as the dance floor. The area in which you should search is also rectangular and the dance floor must be entirely located in that area. Its sides should be parallel to the borders of the area. The dance floor may be located at the borders of the area, and trees may grow on the borders of the dance floor.

输入:

The first line of the input specifies the number of scenarios. For each scenario, the first line provides the length l and width w of the area in meters ( 0 < l, w<=10, 000, both integers). Each of the following lines describes either a single tree, or a line of trees according to one of the following formats: 1 x y, where the ``1'' characterizes a single tree, and x and y provide its coordinates in meters with respect to the upper-left corner. k x y dx dy, where k > 1 provides the number of trees in a line with coordinates (x, y),(x + dx, y + dy),...,(x + (k - 1)dx, y + (k - 1)dy).
0 denotes the end of the scenario.
The coordinates x, y, dx, and dy are given as integers. All the trees will be situated in this area, i.e., have coordinates in [0, l] x [0, w]. There will be at most 1,000 trees.

输出:

For each scenario print a line containing the maximum size of the dance floor measured in square meters.

示例输入:

2
2 3
0
10 10
2 1 1 8 0
2 1 9 8 0
0

示例输出:

6
80

提示:

参考答案:

解锁文章

没有看到答案?微信扫描二维码可免费解锁文章

微信扫描二维码解锁

使用微信扫描二维码打开广告页面后可以立即关闭,再刷新此页面即可正常浏览此文章

所跳转广告均由第三方提供,并不代表本站观点!

已经扫描此二维码?点此立即跳转

code

这个人很懒,什么都没留下

文章评论