C - Count Triangles

Like any unknown mathematician, Yuri has favourite numbers: A, B, C, and D, where A≤B≤C≤D. Yuri also likes triangles and once he thought: how many non-degenerate triangles with integer sides x, y, and z exist, such that A≤x≤B≤y≤C≤z≤D holds?

Yuri is preparing problems for a new contest now, so he is very busy. That’s why he asked you to calculate the number of triangles with described property.

The triangle is called non-degenerate if and only if its vertices are not collinear.

Input
The first line contains four integers: A, B, C and D (1≤A≤B≤C≤D≤5⋅105) — Yuri’s favourite numbers.

Output
Print the number of non-degenerate triangles with integer sides x, y, and z such that the inequality A≤x≤B≤y≤C≤z≤D holds.

Examples
Input
1 2 3 4
Output
4
Input
1 2 2 5
Output
3
Input
500000 500000 500000 500000
Output
1
Note
In the first example Yuri can make up triangles with sides (1,3,3), (2,2,3), (2,3,3) and (2,3,4).

In the second example Yuri can make up triangles with sides (1,2,2), (2,2,2) and (2,2,3).

In the third example Yuri can make up only one equilateral triangle with sides equal to 5⋅105.

首先固定x+y为i那么z的取值范围便是c~min(d,i-1);
而对于x和y的范围,当i<=2*b时固定y为b则x=i-b(大于同理),然后减小x的值在固定i的条件下y就要增加,这样x和y的最小活动范围长度就是x和y的方案数
令x和y的方案数与z的方案数相乘便得到了x+y==i的方案数
枚举i的取值区间并加和即可得到所有方案数

#include<iostream>
using namespace std;
int main()
{
	int a,b,c,d,x,y,z;
	long long ans=0;
	cin>>a>>b>>c>>d;
	for(int i=a+b;i<=b+c;i++)
	{
		z=min(d,i-1);
		if(z<c) continue;
		z=z-c+1;
		if(i<=2*b)
		{
			x=i-b;
			ans+=1ll*(min(x-a,c-b)+1)*z;
		}
		else
		{
			y=i-b;
			ans+=1ll*(min(b-a,c-y)+1)*z;
		}
	}
	cout<<ans<<endl;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值