首页 > 其他 > 详细

【排列组合】bzoj3505 [Cqoi2014]数三角形

时间:2015-06-18 23:33:18      阅读:169      评论:0      收藏:0      [点我收藏+]

http://blog.csdn.net/zhb1997/article/details/38474795

#include<cstdio>
#include<algorithm>
#include<iostream>
using namespace std;
typedef long long ll;
int n,m;
ll ans;
int main()
{
//  freopen("bzoj3505.in","r",stdin);
    scanf("%d%d",&n,&m); ++n; ++m;
    ans=(ll)(n*m-2)*(ll)(n*m-1)*(ll)(n*m)/6ll;
    ans-=(ll)n*(ll)(m-2)*(ll)(m-1)*(ll)m/6ll;
    ans-=(ll)m*(ll)(n-2)*(ll)(n-1)*(ll)n/6ll;
    for(int i=1;i<n;++i)
      for(int j=1;j<m;++j)
        if(__gcd(i,j)>1)
          ans-=(ll)(__gcd(i,j)-1)*(ll)(n-i)*(ll)(m-j)*2ll;
    cout<<ans<<endl;
    return 0;
}

【排列组合】bzoj3505 [Cqoi2014]数三角形

原文:http://www.cnblogs.com/autsky-jadek/p/4587156.html

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