
暴力
Shili_Xu
闽粤田头一村夫而已。
展开
-
UVA 1354 Mobile Computing(暴力)
【思路】所有的坠子和杠杆可以看做节点,构成一棵二叉树,暴力枚举二叉树的组成方式,再对宽度进行计算,就可以得到答案。暴力枚举时需要用到回溯的方式。【代码】#include#include#include#includeusing namespace std;const int MAXN=15;const double EPS=1e-9;double room,a原创 2017-09-14 20:16:46 · 408 阅读 · 0 评论 -
HDU 5983 Pocket Cube (暴力)
Pocket CubeTime Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)Total Submission(s): 866 Accepted Submission(s): 328Problem DescriptionThe Pocket Cube,原创 2017-09-10 23:56:07 · 382 阅读 · 0 评论 -
HDU 6202 cube cube cube(暴力)
cube cube cubeTime Limit: 6000/3000 MS (Java/Others) Memory Limit: 327680/327680 K (Java/Others)Total Submission(s): 9327 Accepted Submission(s): 130Problem DescriptionRubick has原创 2017-09-12 21:57:17 · 735 阅读 · 0 评论 -
UVA 11809 Floating-Point Numbers(暴力)
Floating-point numbers arerepresented differently in computers than integers. That is why a 32-bitfloating-point number can represent values in the magnitude of 1038whilea 32-bit integer can only re原创 2017-10-02 19:23:32 · 336 阅读 · 0 评论 -
UVA 201 Squares(暴力)
A children’sboard game consists of a square array of dots that contains lines connectingsome of the pairs of adjacent dots. One part of the game requires that theplayers count the number of squares of原创 2017-10-03 15:12:17 · 1037 阅读 · 0 评论 -
UVA 1590 IP Networks(暴力)
Alexis administrator of IP networks. His clients have a bunch of individual IPaddresses and he decided to group all those IP addresses into the smallestpossible IP network.Each IP addressis a 4-byte原创 2017-10-04 14:33:33 · 432 阅读 · 0 评论 -
UVA 815 Flooded!(暴力/二分)
To enable homebuyers to estimate thecost of flood insurance, a real-estate firm provides clients with the elevationof each 10-meter by 10-meter square of land in regions where homes may bepurchased. W原创 2017-10-04 19:28:48 · 406 阅读 · 0 评论 -
Codeforces Gym 100015H Hidden Code(暴力)
Hidden Code题目连接:http://codeforces.com/gym/100015/attachmentsDescriptionIt's time to put your hacking skills to the test! You’ve been called upon to help crack enemy codes in thec原创 2017-09-08 15:48:53 · 1116 阅读 · 0 评论 -
HDU 6373 Pinball(暴力)
PinballTime Limit: 2000/1000 MS (Java/Others) Memory Limit: 262144/262144 K (Java/Others)Total Submission(s): 574 Accepted Submission(s): 249 Problem DescriptionThere is a slope on the 2D...原创 2018-08-09 17:53:46 · 301 阅读 · 0 评论