本文主要是介绍How Many Points of Intersection?,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
找规律题,最终可以简化为一个式子
How Many Points of Intersection?
How Many Points of Intersection? |
We have two rows. There are a dots on the top row and b dots on the bottom row. We draw line segments connecting every dot on the top row with every dot on the bottom row. The dots are arranged in such a way that the number of internal intersections among the line segments is maximized. To achieve this goal we must not allow more than two line segments to intersect in a point. The intersection points on the top row and the bottom are not included in our count; we can allow more than two line segments to intersect on those two rows. Given the value of a and b, your task is to compute P(a, b), the number of intersections in between the two rows. For example, in the following figure a = 2 and b = 3. This figure illustrates that P(2, 3) = 3.
Input
Each line in the input will contain two positive integers a ( 0 < a20000) and b ( 0 < b20000). Input is terminated by a line where botha and b are zero. This case should not be processed. You will need to process at most 1200 sets of inputs.
Output
For each line of input, print in a line the serial of output followed by the value of P(a, b). Look at the output for sample input for details. You can assume that the output for the test cases will fit in 64-bit signed integers.
Sample Input
2 2 2 3 3 3 0 0
Sample Output
Case 1: 1 Case 2: 3 Case 3: 9
1 2 3 4 5 6 7 8 9 10 11 12 13
#include <stdio.h> int main() {long long a, b, s, i, j, n = 0;while(scanf("%lld%lld",&a,&b)!=EOF){n++;s = 0;if(a==0&&b==0) break;printf("Case %lld: %lld\n", n, (a - 1) * a / 2 * (b - 1) * b / 2);}return 0; }
这篇关于How Many Points of Intersection?的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!