zoukankan      html  css  js  c++  java
  • 第六周O题(等边三角形个数)

    O - 计数
    Time Limit:2000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u
     

    Description

    Gerald got a very curious hexagon for his birthday. The boy found out that all the angles of the hexagon are equal to . Then he measured the length of its sides, and found that each of them is equal to an integer number of centimeters. There the properties of the hexagon ended and Gerald decided to draw on it.

    He painted a few lines, parallel to the sides of the hexagon. The lines split the hexagon into regular triangles with sides of 1 centimeter. Now Gerald wonders how many triangles he has got. But there were so many of them that Gerald lost the track of his counting. Help the boy count the triangles.

    Input

    The first and the single line of the input contains 6 space-separated integers a1, a2, a3, a4, a5 and a6 (1 ≤ ai ≤ 1000) — the lengths of the sides of the hexagons in centimeters in the clockwise order. It is guaranteed that the hexagon with the indicated properties and the exactly such sides exists.

    Output

    Print a single integer — the number of triangles with the sides of one 1 centimeter, into which the hexagon is split.

    Sample Input

    Input
    1 1 1 1 1 1
    Output
    6
    Input
    1 2 1 2 1 2
    Output
    13

    Hint

    This is what Gerald's hexagon looks like in the first sample:

    And that's what it looks like in the second sample:

    题解;又是一道数学问题,输入六边形的每条边的长度,然后以边长1画等边三角形,统计六边形内部三角形的个数,统计时采用容斥原理即可。

    盗图一张。。 

     这里输入的边长为3 4 2 6 1 5   ,通过填补的到一个正三角形,正三角形的边长len就是前三个边a1+a2+a3=9,这个正三角形中含有边长为1的三角形的个数就是len*len=81,然后减去三个角的三角形个数即可,这三个三角形也是正三角形,所以减去的三角形个数就是3*3+2*2+1*1,所以六边形含有的边长为1的三角形个数为81-(3*3+2*2+1*1)=67

      

     代码:

    #include<iostream>
    using namespace std;
    int main()
    {
        int a1,a2,a3,a4,a5,a6;
        cin>>a1>>a2>>a3>>a4>>a5>>a6;
        int len=a1+a2+a3;
        cout<<len*len-a1*a1-a3*a3-a5*a5<<endl;
    }
  • 相关阅读:
    yum安装8.0mysql数据库
    free命令详细介绍
    linux 自定义美女欢迎界面
    shll脚本常用格式和规则使用
    liunx常用知识基本命令大全
    liunx系统二进制包安装编译mysql数据库
    CentOS7更改网卡名称
    老男孩教育100道面试题
    非关系型数据库(NoSQL)
    iptables
  • 原文地址:https://www.cnblogs.com/hfc-xx/p/4743647.html
Copyright © 2011-2022 走看看