码迷,mamicode.com
首页 > 其他好文 > 详细

UVA No Tipping

时间:2014-07-19 23:13:39      阅读:343      评论:0      收藏:0      [点我收藏+]

标签:acm   backtracking   brute force   uva   

Problem A - No Tipping

As Archimedes famously observed, if you put an object on a lever arm,it will exert a twisting force around the lever‘s fulcrum. Thistwisting is called torque and is equal to the object‘s weightmultiplied by its distance from the fulcrum (the angle of the leveralso comes in, but that does not concern us here). If the object is tothe left of the fulcrum, the direction of the torque iscounterclockwise; if the object is to the right, the direction isclockwise. To compute the torque around a support, simply sum all thetorques of the individual objects on the lever.

The challenge is to keep the lever balanced while adjusting theobjects on it. Assume you have a straight, evenly weighted board, 20meters long and weighing three kilograms. The middle of the board isthe center of mass, and we will call that position 0. So the possiblepositions on the board range from -10 (the left end) to +10 (the rightend). The board is supported at positions -1.5 and +1.5 by two equalfulcrums, both two meters tall and standing on a flat floor. On theboard are six packages, at positions -8, -4, -3, 2, 5 and 8, havingweights of 4, 10, 10, 4, 7 and 8 kilograms, respectively as in thepicture below.

bubuko.com,布布扣

Your job is to remove the packages one at a time in such a way thatthe board rests on both supports without tipping. The board would tipif the net torque around the left fulcrum (resulting from the weightsof the packages and the board itself) were counterclockwise or if thenet torque around the right fulcrum were clockwise. A possiblesolution to this problem is: first remove the package at position -4,then the package at 8, then -8, then 5, then -3 and finally 2.

You are to write a program which solves problems like the onedescribed above. The input contains multiple cases. Each case startswith three integers: the length of the board (in meters, at least3), the weight of the board (in kilograms) and n thenumber of packages on the board (n <= 20).The board is supported at positions -1.5 and +1.5 by two equalfulcrums, both two meters tall and standing on a flat floor.The following n lines contain two integers each: the position of apackage on board (in meters measured from the center,negative means to the left) and the weight of the package (inkilograms). A line containing three 0‘s ends the input. For eachcase you are to output the number of the case in the format shownbelow and then n lines each containing 2 integers, theposition of a package and its weight, in an order in which the packagescan be removed without causing the board to tip. If there is nosolution for a case, output a single line Impossible. Thereis no solution if in the initial configuration the board is notbalanced.

Sample input

20 3 6
-8 4
-4 10
-3 10
2 4
5 7
8 8
20 3 15
1 10 
8 5
-6 8
5 9
-8 4
8 10
-3 10
-4 5
2 9
-2 2
3 3
-3 2
5 1
-6 1
2 5
30 10 2
-8 100
9 91
0 0 0 
 

Possible Output for sample input

Case 1:
-4 10
8 8
-8 4
5 7
-3 10
2 4
Case 2:
1 10 
8 5
-6 8
5 9
-8 4
8 10
-3 10
-4 5
2 9
-2 2
3 3
-3 2
5 1
-6 1
2 5
Case 3:
Impossible



我刚开始是直接DFS,果断超时了,然后参考了别人的算法,如下:(抄自hackerwin7的专栏)

题解:两种方法。

一、DFS剪枝+物理力矩+贪心二、状态压缩+记忆话搜索 ...

一:将放上去的砝码做一个逆变换,即初始化为杠杆上没有砝码,我们一个一个往上放,使其过程中不发生侧翻的情况。

侧翻的情况:当左边点的左端的力矩大于左边点的右端的力矩,会往左侧翻;当右边点的右端的力矩大于右边点的左端的力矩,会往右侧翻。

注意点:

1、处理时将坐标放大两倍,使1.5->3省略小数的处理。

2、处于-1.5~+1.5之间的先放,可以证明其不会影响杠杆的侧翻(剪枝)。

3、在此区间以外的分为两组,-L~-1.5为左组  +1.5~+L为右组,将两组按对应点力矩升序排列,放砝码时,若放最大的,很可能会引起侧翻,

所以尽可能维持平衡,从影响度最小的开始放,再放大的,这样到后面这些若干小的可以缓和另一侧大的砝码的侧翻影响效应,从而尽可能维持平衡

(若实在无法维持平衡   那就是impossible)。所以整个DFS过程可以贪心地去一边的砝码,比如左边的按升序先放砝码,一直到左边再放一个就

会引起侧翻后,再到右边的按升序放,用来抑制左边会侧翻的情况,若左边还是侧翻继续往右边放,直到左边可以放为止,注意左右两组砝码都是有序

的,这样省去了无序砝码的遍历查找时间(剪枝)。一直维持这个过程,直到所有砝码都放上去,也没有出现侧翻的条件就ok;如果出现这样的情况,无

论放左边还是放右边的都有侧翻情况发生,那么这一种情况就是impossible的。(感觉这样的模式与快排的算法模式有点相似。

AC的代码如下

UVA No Tipping

标签:acm   backtracking   brute force   uva   

原文地址:http://blog.csdn.net/u013840081/article/details/37969611

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!