zoukankan      html  css  js  c++  java
  • Coconuts, Revisited(递推+枚举+模拟)

    Description

    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


    题目大意:还是人和猴子分桃子,不过猴子只有一个。和UVA-10726Coco Monkey不同的是,这道题已知的是桃子数,让求可能的最多人数。
    题目解析:将递推的过程反过来,枚举人数,模拟分桃子的过程。人数不会太多。

    代码如下:
     1 # include<iostream>
     2 # include<cstdio>
     3 # include<set>
     4 # include<vector>
     5 # include<fstream>
     6 # include<cstring>
     7 # include<algorithm>
     8 using namespace std;
     9 const int N=100000005;
    10 bool ok(int ss,int n)
    11 {
    12     int t=ss;
    13     while(ss--){
    14         if((n-1)%t)
    15             break;
    16         n=(n-1)/t*(t-1);
    17     }
    18     if(ss==-1&&(n%t==0))
    19         return true;
    20     return false;
    21 }
    22 int main()
    23 {
    24     int n,i;
    25     while(scanf("%d",&n))
    26     {
    27         if(n==-1)
    28             break;
    29         int ans=0;
    30         for(i=2;i<10;++i){
    31             if(i*(i-1)>=n)
    32                 break;
    33             if(ok(i,n)){
    34                 ans=i;
    35             }
    36         }
    37         printf("%d coconuts, ",n);
    38         if(ans>0){
    39             printf("%d people and 1 monkey
    ",ans);
    40         }else
    41             printf("no solution
    ");
    42     }
    43     return 0;
    44 }
     
    
    
  • 相关阅读:
    java 基本数据类型
    public 类、default 类、内部类、匿名内部类
    使用jar命令打jar/war包、创建可执行jar包、运行jar包、及批处理脚本编写
    jdk下载及安装
    数据库常用查询
    数据库锁的几种类型
    ORACLE表批量迁移表空间
    如何区分Oracle的数据库,实例,服务名,SID
    ORACLE下如何获得全部的索引创建语句
    oracle 内存分配和调优 总结
  • 原文地址:https://www.cnblogs.com/20143605--pcx/p/4672654.html
Copyright © 2011-2022 走看看