CF #727(div2)A. Contest Start,找规律,数学

Posted 小哈里

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CF #727(div2)A. Contest Start,找规律,数学相关的知识,希望对你有一定的参考价值。

problem

A. Contest Start
time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard output
There are n people participating in some contest, they start participating in x minutes intervals. That means the first participant starts at time 0, the second participant starts at time x, the third — at time 2⋅x, and so on.

Duration of contest is t minutes for each participant, so the first participant finishes the contest at time t, the second — at time t+x, and so on. When a participant finishes the contest, their dissatisfaction equals to the number of participants that started the contest (or starting it now), but haven’t yet finished it.

Determine the sum of dissatisfaction of all participants.

Input
The first line contains a single integer k (1≤k≤1000) — the number of test cases.

Each of the next k lines contains three integers n, x, t (1≤n,x,t≤2⋅109) — the number of participants, the start interval and the contest duration.

Output
Print k lines, in the i-th line print the total dissatisfaction of participants in the i-th test case.

Example
inputCopy
4
4 2 5
3 1 2
3 3 10
2000000000 1 2000000000
outputCopy
5
3
3
1999999999000000000
Note
In the first example the first participant starts at 0 and finishes at time 5. By that time the second and the third participants start, so the dissatisfaction of the first participant is 2.

The second participant starts at time 2 and finishes at time 7. By that time the third the fourth participants start, so the dissatisfaction of the second participant is 2.

The third participant starts at 4 and finishes at 9. By that time the fourth participant starts, so the dissatisfaction of the third participant is 1.

The fourth participant starts at 6 and finishes at 11. By time 11 everyone finishes the contest, so the dissatisfaction of the fourth participant is 0.

In the second example the first participant starts at 0 and finishes at time 2. By that time the second participants starts, and the third starts at exactly time 2. So the dissatisfaction of the first participant is 2.

The second participant starts at time 1 and finishes at time 3. At that time the third participant is solving the contest.

solution

#include<bits/stdc++.h>
using namespace std;
typedef long long LL;
const int maxn = 1e7+10;

int main(){
	ios::sync_with_stdio(false);
	int T;  cin>>T;
	while(T--){
		LL n, x, t;  cin>>n>>x>>t;
		LL num = t/x+1;
		if(num>=n){
			num = n;
			cout<<(num-1)*num/2<<"\\n";
		}else{
			num--;
			cout<<(num-1)*num/2+num*(n-num)<<"\\n";
		}
	}
	return 0;
}


以上是关于CF #727(div2)A. Contest Start,找规律,数学的主要内容,如果未能解决你的问题,请参考以下文章

CF #727(div2)B. Love Song,前缀和

CF #727(div2)C. Stable Groups,贪心,排序

contest4 CF1091 div2 ooooxx ooooxx ooooox

CF #738(div2)A. Mocha and Math(贪心)

contest2 CF989 div2 ooox? ooox? oooo?

contest3 CF994 div2 ooxxx? oooox? ooooo?