码迷,mamicode.com
首页 > 其他好文 > 详细

hdu 4486

时间:2014-12-16 06:28:51      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:blog   ar   io   os   sp   for   div   log   bs   

 把一个长度为n的绳子分成三段,用这3段绳子组成三角形,问有多少个不同的三角形
  如果一个三角形的三边都不相等,可以算两次.

#include<iostream>
#include<cstdio>
#include<cstring>
#include<string>
#include<algorithm>
#include<cstdlib>
#include<cmath>
#include<queue>
#include<vector>
#include<set>
using namespace std;
int ca,n,t,y,miny,maxy,ans;
int main()
{
      scanf("%d",&t);
      while(t--)
      {
            ans=0;
            scanf("%d%d",&ca,&n);
            for(int x=1;x<=n/3;x++)
            {
                 miny=max(x,n/2-x+1);
                 maxy=(n-x)/2;
                 if(x==miny)
                        --ans;
                 if(x!=maxy&&maxy==n-x-maxy)
                        --ans;
                 ans+=(maxy-miny+1)*2;
            }
            printf("%d %d\n",ca,ans);
      }
      return 0;
}

  

hdu 4486

标签:blog   ar   io   os   sp   for   div   log   bs   

原文地址:http://www.cnblogs.com/a972290869/p/4166253.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!