Coconuts, Revisited

          Coconuts, Revisited

The short story titled Coconuts, by Ben Ames Williams, appeared in the Saturday Evening Post on October 9, 1926. The story tells about five men and a monkey who were shipwrecked on an island. They spent the first night gathering coconuts. During the night, one man woke up and decided to take his share of the coconuts. He divided them into five piles. One coconut was left over so he gave it to the monkey, then hid his share and went back to sleep.

 

Soon a second man woke up and did the same thing. After dividing the coconuts into five piles, one coconut was left over which he gave to the monkey. He then hid his share and went back to bed. The third, fourth, and fifth man followed exactly the same procedure. The next morning, after they all woke up, they divided the remaining coconuts into five equal shares. This time no coconuts were left over.

 

An obvious question is ``how many coconuts did they originally gather?" There are an infinite number of answers, but the lowest of these is 3,121. But that's not our problem here.

 

Suppose we turn the problem around. If we know the number of coconuts that were gathered, what is the maximum number of persons (and one monkey) that could have been shipwrecked if the same procedure could occur?

 

Input 

The input will consist of a sequence of integers, each representing the number of coconuts gathered by a group of persons (and a monkey) that were shipwrecked. The sequence will be followed by a negative number.

 

Output 

For each number of coconuts, determine the largest number of persons who could have participated in the procedure described above. Display the results similar to the manner shown below, in the Sample Output. There may be no solution for some of the input cases; if so, state that observation.

 

Sample Input 

 

25
30
3121
-1

 

Sample Output 

25 coconuts, 3 people and 1 monkey
30 coconuts, no solution
3121 coconuts, 5 people and 1 monkey


题意:总共有n个椰子,(自己以为是可可豆)有m个人,到了晚上,每个人都会去把n-1(给猴子一个)除以m,再拿走自己的一份,最后剩的还要是m的倍数,求最大m
如:25……先减一……=24……再除以m(=3)……=8……第一个人拿走了8个,剩下了16个……第二个人也要拿……-1再除3为5……即第二个人拿走了5个……还剩10个……-1再除3为3……即第三个人拿走了3个……还剩6个……
没人拿了,而且剩下了3的倍数
tip:模拟,下一次剩的椰子等于这一次减去这个人拿的再减一;即x=x-(x-1)/i-1

 1 #include<iostream>
 2 
 3 using namespace std;
 4 
 5 int solve(int n)
 6 {
 7     int i,j,x;
 8     for(i=10;i>1;i--)
 9     {
10         x=n;
11         j=i;
12         while(j)
13         {
14             if((x-1)%i!=0)
15                 break;
16             x=x-(x-1)/i-1;
17             j--;
18         }
19         if(j==0&&x%i==0)
20             return i;
21     }
22     return 0;
23 }
24 
25 int main()
26 {
27     int c,p;
28     while(cin>>c)
29     {
30         if(c==-1)
31             break;
32         cout<<c<<" coconuts, ";
33         p=solve(c);
34         if(p)
35             cout<<p<<" people and 1 monkey"<<endl;
36         else
37             cout<<"no solution"<<endl;
38     }
39     return 0;
40 }
 
 

 

 
 

 

转载于:https://www.cnblogs.com/moqitianliang/p/4681861.html

解决这个问题King Julien rules the Madagascar island whose primary crop is coconuts. If the price of coconuts is P , then King Julien’s subjects will demand D(P ) = 1200 − 100P coconuts per week for their own use. The number of coconuts that will be supplied per week by the island’s coconut growers is S(p) = 100P. (a) (2 pts) Calculate the equilibrium price and quantity for coconuts. (b) (2 pts) One day, King Julien decided to tax his subjects in order to collect coconuts for the Royal Larder. The king required that every subject who consumed a coconut would have to pay a coconut to the king as a tax. Thus, if a subject wanted 5 coconuts for himself, he would have to purchase 10 coconuts and give 5 to the king. When the price that is received by the sellers is pS, how much does it cost one of the king’s subjects to get an extra coconut for himself? (c) (3 pts) When the price paid to suppliers is pS, how many coconuts will the king’s subjects demand for their own consumption (as a function of pS)? 2 (d) (2 pts) Under the above coconut tax policy, determine the total number of coconuts demanded per week by King Julien and his subjects as a function of pS. (e) (3 pts) Calculate the equilibrium value of pS, the equilibrium total number of coconuts produced, and the equilibrium total number of coconuts consumed by Julien’s subjects. (f) (5 pts) King Julien’s subjects resented paying the extra coconuts to the king, and whispers of revolution spread through the palace. Worried by the hostile atmosphere, the king changed the coconut tax. Now, the shopkeepers who sold the coconuts would be responsible for paying the tax. For every coconut sold to a consumer, the shopkeeper would have to pay one coconut to the king. For this new policy, calculate the number of coconuts being sold to the consumers, the value per coconuts that the shopkeepers got after paying their tax to the king, and the price payed by the consumers.
最新发布
03-07
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值