305 - Joseph

UVa網站題目連結
My Solved Problems Performance

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

Solution

  1. import java.io.BufferedInputStream;
  2. import java.util.Scanner;

  3. public class Main {

  4. static Scanner in = new Scanner(new BufferedInputStream(System.in));
  5. static int k, m, p, now, kill;

  6. public static void main (String[] args) {

  7. while ((k=in.nextInt())!=0) {
  8. Joseph(k);
  9. }
  10. }

  11. private static void Joseph(int k) {
  12. p = 2*k;
  13. now = 1;
  14. m = 2;
  15. while (p > k) {
  16. kill = (now+m-1)%p;
  17. if ((kill<=k)&&(kill!=0)) {
  18. p = 2*k;
  19. m++;
  20. now = 1;
  21. } else {
  22. now = (kill==0) ? 1 : kill;
  23. p--;
  24. }
  25. }
  26. System.out.println(m);
  27. }
  28. }
關鍵字:UVa Online Judge, ACM. Java

留言

這個網誌中的熱門文章

【白沙屯媽祖徒步進香】2024及歷年時程+路線+停留點!

【博客來折價券】博客來免費序號e-coupon分享(持續更新)

【銀行代碼查詢】3碼銀行代碼列表、7碼分行代碼查詢

【博客來折價券】25/50/100/150現領現折+天天簽到換200+OP兩倍換!

【Hami Video】免費Hami Video體驗/試用序號分享(隨時更新)!

【台北中壢】國道客運/公車路線(1818,2022,9001,9025)!