Codeforces Round #313 (Div. 2) C. Gerald's Hexagon 数学

C.Gerald'sHexagon计数
本篇介绍了一个角都是120度的六边形分割问题,目标是计算由这种六边形分割而成的边长为1厘米的正三角形的数量。通过将六边形转换为更大的三角形并进行减法操作来解决该问题。

C. Gerald's Hexagon

Time Limit: 2 Sec

Memory Limit: 256 MB

题目连接

http://codeforces.com/contest/559/problem/A

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

1 1 1 1 1 1

Sample Output

6

HINT

 

题意

       给你一个角都是120度的六边形,问有多少个边长为1的正三角形

题解:

吧六边形画成大的正三角形,减下就OK了

代码

 1 #include <iostream>
 2 #include <stdio.h>
 3 #include <vector>
 4 #include <algorithm>
 5 #include <string>
 6 #include <stack>
 7 #include <math.h>
 8 #include <vector>
 9 #include <string.h>
10 #define mod 1000000007
11 using namespace std;
12 //*******************************
13 
14 int a,b,c,d,e,f;
15 
16 int main(){
17     scanf("%d%d%d%d%d%d",&a,&b,&c,&d,&e,&f);
18     int t=a+b+c;
19     cout<<t*t-a*a-e*e-c*c<<endl;
20     return 0;
21 }
View Code

 

转载于:https://www.cnblogs.com/zxhl/p/4669167.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值