Results 1 to 5 of 5
- 03-30-2011, 07:05 PM #1
Member
- Join Date
- Mar 2011
- Posts
- 2
- Rep Power
- 0
[find out the lucky position to survive]-will you help me please !
This problem is a game where n objects are arranged in a circle and every mth object is deleted until 1 object is left.
The original problem is said to derive from a suicide pact among 41 rebels trapped by the Romans in the first century. The rebels decided to kill every third person until one is left and can escape in a boat that can take only one person. Josephus, the historian who lived to tell the story quickly figured out where he should position himself from the starting point in the circle so that he would survive.
Suppose you were in that situation with the only difference that you have your palm PC to quickly find out the lucky position to survive. Your program should be able to handle the following situation:
n people (n > 0 ) are initially arranged in a circle, facing inwards, and numbered from 1 to n. The numbering from 1 to n proceeds consecutively in a clockwise direction.
Starting with person number 1, counting continues in a clockwise direction, until we get to person number k (k > 0), who is promptly killed.
Counting then proceeds from the person to his immediate left, to kill the kth person, and so on, until only one person remains.
For example, when n = 5 and k = 2, the order of execution is 2, 4, 1, and 5. The survivor is 3.
Hint you have to implement the circular list for your program to be efficient."how that could be !"
Input
Input data is to be read from a file roulette.in. Each line in this file contains values for n and k (in that order). A line containing values of 0 for n and k will terminate input. Your program does know not the maximum number of people taking part in this tragic event.
Output
For each input line, output in a file roulette.out the position of the sole survivor.
Sample Input
1 1
1 5
8 3
0 0
Sample Output
1
1
7
- to be serious with you i did not understand this question very well !!
what am thinking about it now is the algorithm how they got from the 2 rows
1 , 1 , 7 ! .. the example which given has no thing to understand !
i have to understand this method"by words not by coding" to go ahead .. .. do not misunderstand me , i do not want someone to
solve my assignment .. i want some one to be just as a supervisor . :)
what am planed to do for now :
read file.
arranged in some how way in the circular LL
used method which return to me after removing the survivor person.
i thought that maybe i can used recursion .. i dunno why it seem to me just like binary search
- 03-30-2011, 07:25 PM #2
- Join Date
- Jan 2011
- Location
- Richmond, Virginia
- Posts
- 3,069
- Blog Entries
- 3
- Rep Power
- 7
I didn't read your whole question yet, but this is the josepheth(or something like that) problem. I had a post on these forums with a few people giving tips for a math approach; I was able to solve it with an array list. Give it your best shot and post your attempts.
- 03-30-2011, 07:43 PM #3
- Join Date
- Sep 2008
- Location
- Voorschoten, the Netherlands
- Posts
- 11,606
- Blog Entries
- 7
- Rep Power
- 17
Use a BitSet and pay special attention to the nextBitSet( ... ) method.
kind regards,
JosWhen people rob a bank they get a penalty; when banks rob people they get a bonus.
- 03-31-2011, 12:43 PM #4
Member
- Join Date
- Mar 2011
- Posts
- 2
- Rep Power
- 0
will you give me brief example about this method ! please ?
.. i read about it in The Java programming language for Ken Arnold and James Gosling , there is only
information with out examples ..
- 03-31-2011, 01:29 PM #5
- Join Date
- Sep 2008
- Location
- Voorschoten, the Netherlands
- Posts
- 11,606
- Blog Entries
- 7
- Rep Power
- 17
Similar Threads
-
Find index position of every word in a String
By pentace in forum New To JavaReplies: 6Last Post: 06-28-2009, 08:26 PM -
get position in string from caret position
By helloworld111 in forum AWT / SwingReplies: 5Last Post: 02-19-2009, 01:36 AM -
BorderFactory to set position?
By aleplgr in forum AWT / SwingReplies: 2Last Post: 01-30-2008, 12:46 PM -
Help with position in java
By fernando in forum New To JavaReplies: 1Last Post: 07-31-2007, 07:54 PM -
Use the mouse position
By susan in forum Java AppletsReplies: 1Last Post: 07-28-2007, 11:10 PM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks