A. Buying Torches1000 / 贪心

Posted 幽殇默

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A. Buying Torches1000 / 贪心相关的知识,希望对你有一定的参考价值。


https://codeforces.com/problemset/problem/1418/A

#include<bits/stdc++.h>
using namespace std;
typedef unsigned long long int LL;
int main(void)
{
	int t; cin>>t;
	while(t--)
	{
		LL x,y,k; cin>>x>>y>>k;
		LL sum=k*y+k;//总的木棒数 
		sum--,x--; //减去初始的1个,每次增加(x-1)根木棒 
		LL cnt=sum/x;
		if(sum%x) cnt++;
		cout<<cnt+k<<endl;
	}
	return 0;
}

以上是关于A. Buying Torches1000 / 贪心的主要内容,如果未能解决你的问题,请参考以下文章

Buying Torches

A. Dragons 1000 / 贪心

A. Expression1000 / 水题

A. Game 23 1000 / 分解因子

A. Contest Start1000 / 思维

A. Towers1000 / 哈希表