Apple

博客围绕苹果分配问题展开,有一盒含N个苹果要分给M个人,要求每人得到正整数个苹果且数量不同。解题思路指出,若要实现分配,苹果个数需大于人数的前n项和,以此判断分配是否可行。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Apple
链接:https://ac.nowcoder.com/acm/contest/8827/B
来源:牛客网

There are a box of apples,which contains N apples. You’re going to give them to M person. It is required that everyone must be given a positive integer apple, and no one must have the same amount. If it can be done, output “possible”; otherwise output “impossible”.
代码

#include <bits/stdc++.h>
using namespace std;
int main(){
	int t;cin>>t;
	while(t--){
		int n,m;cin>>n>>m;
		if(n>=(m+1)*m/2){   //如果苹果的个数大于人数m的前m项和
			cout<<"possible"<<endl;
		}
		else cout<<"impossible"<<endl;
	}
}

【解题思路】
至少有一种情况是每个人拿到的苹果个数不同,那么,苹果的个数一定要大于人数的前n项和,这样才有机会每个人在1~m中随机取得一个数。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值