A. Berland Poker1000 / 贪心 思维
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A. Berland Poker1000 / 贪心 思维相关的知识,希望对你有一定的参考价值。
https://codeforces.com/problemset/problem/1359/A
一个人拿的最多,剩下的每一个人尽可能的平分。
#include<bits/stdc++.h>
using namespace std;
int main(void)
{
int t; cin>>t;
while(t--)
{
int n,m,k; cin>>n>>m>>k;
int ans1=min(n/k,m);
m=m-ans1;
int ans2=m/(k-1)+(m%(k-1)!=0);
cout<<ans1-ans2<<endl;
}
return 0;
}
以上是关于A. Berland Poker1000 / 贪心 思维的主要内容,如果未能解决你的问题,请参考以下文章
Educational Codeforces Round 88 (Rated for Div. 2) A. Berland Poker