zoukankan      html  css  js  c++  java
  • Joseph

    Description

    The Joseph's problem is notoriously known. For those who are not familiar with the original problem: from among n people, numbered 1, 2, . . ., n, standing in circle every mth is going to be executed and only the life of the last remaining person will be saved. Joseph was smart enough to choose the position of the last remaining person, thus saving his life to give us the message about the incident. For example when n = 6 and m = 5 then the people will be executed in the order 5, 4, 6, 2, 3 and 1 will be saved. 

    Suppose that there are k good guys and k bad guys. In the circle the first k are good guys and the last k bad guys. You have to determine such minimal m that all the bad guys will be executed before the first good guy. 

    Input

    The input file consists of separate lines containing k. The last line in the input file contains 0. You can suppose that 0 < k < 14.

    Output

    The output file will consist of separate lines containing m corresponding to k in the input file.

    Sample Input

    3
    4
    0
    

    Sample Output

    5
    30
    

    题意:约瑟夫环的变形。

    先说约翰夫环,即n个人围成一圈报数,报到数的人离开,问最后离开的那人的编号

    数学公式:

    s = 0;
    for(int i = 2; i <= n; i++){
         s = (s + m )%i;
    }
    printf("%d", s + 1);

    链表实现:

    输出的s就是最后的编号(根据n改变改变),即从零个数开始逆推上去原来的编号,不是推出的人,是编号的转变。

    本题是前n个好人后n个坏人,要算出的是坏人的编号,即推出的人的编号,所以是%len开始

    #include<cstdio>
    #include<cstring>
    using namespace std;
    bool check(int n,int m)
    {
        int len = 2*n;
        int s = 1;
        for(int i = 1; i <= n ; i++){
                 s = (s + m - 1)%len;
                 if(s == 0) s = len;
                 len--;
                 if(s <= n) return false;
                 if(s > len) s = 1;
        }
        return true;
    }
    int main(){
        int a[100];
        int n,m;
        for( n = 1; n < 14;n++){
                for( m = n+1;;m++){
                        if(check(n,m)){
                            a[n] = m;
                            break;
                        }
                }
        }
        while(~scanf("%d",&n)&&n){
                printf("%d
    ",a[n]);
        }
        return 0;
    }
    View Code
  • 相关阅读:
    OpenStack安装及监控配置视频教程
    具有可视化的功能的一款开源软件Gource
    Ubuntu 12.04使用演示
    VisualRoute for Mac OS 体验
    P1006-传纸条
    Leetcode-1157 Online Majority Element In Subarray(子数组中占绝大多数的元素)
    Leetcode-1156 Swap For Maximum Repeated Substring(单字符重复子串的最大长度)
    Leetcode-1155 Number of Dice Rolls With Target Sum(掷骰子的N种方法)
    Leetcode-1154 Ordinal Number Of Date(一年中的第几天)
    P1508-Likecloud-吃、吃、吃
  • 原文地址:https://www.cnblogs.com/zero-begin/p/4314171.html
Copyright © 2011-2022 走看看