首页 > 其他 > 详细

8 UVA 10790 How Many Points of Intersection?

时间:2015-04-29 23:34:02      阅读:455      评论:0      收藏:0      [点我收藏+]

第一排第i个点和第二排第j个点相连,在这条线段上会产生(a-i)*(j-1)个交点,

以此类推,推公式即可。


#include<cstdio>
#define ll long long
ll a,b;
int cas=1;
int main()
{
    while(~scanf("%d%d",&a,&b)&&(a||b))
        printf("Case %d: %lld\n",cas++,a*(a-1)/2*b*(b-1)/2);
    return 0;
}


8 UVA 10790 How Many Points of Intersection?

原文:http://blog.csdn.net/u011032846/article/details/45372213

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!