5047专题

HDU 5047 Sawtooth(大数优化+递推公式)

HDU 5047 Sawtooth(大数优化+递推公式) 来源:网络    编辑:admin http://acm.hdu.edu.cn/showproblem.php?pid=5047 题目大意:      给n条样子像“m”的折线,求它们能把二维平面分成的面最多是多少。 解题思路:     我们发现直线1条:2平面;2直线:4平面;3直线:7平面......因为

hdu 5047平面分割

题目大意:      给n条样子像“m”的折线,求它们能把二维平面分成的面最多是多少。 解题思路:     我们发现直线1条:2平面;2直线:4平面;3直线:7平面......因为第n条直线要与前面n-1条直线都相交,才能使分的平面最多,则添加第n条直线,平面增加n个;     所以公式是面F = 2 + 2 + 3 + ......+ n = (1+n)*n/2 + 1

HDU - 5047 Sawtooth

Problem Description Think about a plane: ● One straight line can divide a plane into two regions. ● Two lines can divide a plane into at most four regions. ● Three lines can divide a plane in