Algorithm to calculate next set in sequence - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T07:37:25Zhttp://stackoverflow.com/feeds/question/162752http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/162752/algorithm-to-calculate-next-set-in-sequence3Algorithm to calculate next set in sequenceChristian Lescuyer2008-10-02T14:52:33Z2008-10-14T14:57:28Z
<p>I am looking for an algorithm to calculate the next set of operations in a sequence. Here is the simple definition of the sequence.</p>
<ol>
<li>Task 1A will be done every 500 hours</li>
<li>Task 2A will be done every 1000 hours</li>
<li>Task 3A will be done every 1500 hours</li>
</ol>
<p>So at t=500, do 1A. At t=1000, do both 1A and 2A, at t=1500 do 1A and 3A, but not 2A as 1500 is not a multiple of 1000. You get the idea.</p>
<p>It would be quite easy if I had the actual time, but I don't. What I have is the history of tasks (eg last time a [1A+2A] was done). </p>
<p>Knowing last time (eg [1A+2A]) is not enough to decide:</p>
<ul>
<li>[1A+2A] could be at t=1000: next is [1A+3A] at t=1500</li>
<li>[1A+2A] could be at t=5000: next is [1A] at t=5500</li>
</ul>
<p>Is there an algorithm for this? It looks like a familiar problem (some sort of sieve?) but I can't seem to find a solution.</p>
<p>Also it must "scale" as I actually have more than 3 tasks.</p>
http://stackoverflow.com/questions/162752/algorithm-to-calculate-next-set-in-sequence/162806#1628063Answer by Bill the Lizard for Algorithm to calculate next set in sequenceBill the Lizard2008-10-02T14:59:49Z2008-10-02T14:59:49Z<p>If you have enough history to get the last two times each task was done you could reconstruct the original task sequence definitions. When they coincide is incidental.</p>
http://stackoverflow.com/questions/162752/algorithm-to-calculate-next-set-in-sequence/162825#1628252Answer by Glomek for Algorithm to calculate next set in sequenceGlomek2008-10-02T15:01:54Z2008-10-02T15:01:54Z<p>The sequence must repeat. For the example given, the sequence would be 1A, 1A+2A, 1A+3A, 1A+2A, 1A, 1A+2A+3A. In this situation, you could see how far back the last 1A+2A+3A is and use that distance as an index into an array. In the general case, for a cycle of length N, you could always do it by testing the last N events against all rotations of the cycle, but I suspect that there will usually be some kind of shortcut available, like how many events back the last "do everything" event happened, or how long ago the last "do everything" event happened.</p>
http://stackoverflow.com/questions/162752/algorithm-to-calculate-next-set-in-sequence/162831#1628311Answer by dacracot for Algorithm to calculate next set in sequencedacracot2008-10-02T15:02:58Z2008-10-02T15:02:58Z<p>Seems like a greatest common denominator problem.</p>
http://stackoverflow.com/questions/162752/algorithm-to-calculate-next-set-in-sequence/162923#1629231Answer by 6eorge Jetson for Algorithm to calculate next set in sequence6eorge Jetson2008-10-02T15:16:36Z2008-10-02T18:54:24Z<p><b>Edit:</b></p>
<p>Ah, you have to go the other way. In that case, as someone mentioned, you can calculate an effective @TimeLastJob using the least common multiple of the three</p>
<blockquote>
--Note: uses some SQL Server 2005 SQL extentions,
<br/>-- but can still serve as a psuedocode specification of the algorithm
<br/>DECLARE @constEvaluationPeriodLength int
<br/>DECLARE @constCycleTimeJob1A int
<br/>DECLARE @constCycleTimeJob2A int
<br/>DECLARE @constCycleTimeJob3A int
<br/>
<br/>SET @constEvaluationPeriodLength = 500
<br/>SET @constCycleTimeJob1A = 500
<br/>SET @constCycleTimeJob2A = 1000
<br/>SET @constCycleTimeJob3A = 1500
<br/>
<br/>DECLARE @Indicator1ARunAtLastCyclePoint int
<br/>DECLARE @Indicator2ARunAtLastCyclePoint int
<br/>DECLARE @Indicator3ARunAtLastCyclePoint int
<br/>
<br/>SET @Indicator1ARunAtLastCyclePoint = 1
<br/>SET @Indicator2ARunAtLastCyclePoint = 0
<br/>SET @Indicator3ARunAtLastCyclePoint = 1
<br/>
<br/>DECLARE @tblPrimeFactors TABLE(
<br/> TaskId int
<br/> CycleTimePrimeFactor int
<br/>)
<br/>
<br/>--Capture the prime factors for each TaskId
<br/>IF (@Indicator1ARunAtLastCyclePoint = 1)
<br/> BEGIN
<br/> INSERT @tblPrimeFactors
<br/> SELECT
<br/> TaskId = 1
<br/> ,PrimeFactor
<br/> FROM dbo.tvfGetPrimeFactors(@constCycleTimeJob1A) --Table-valued function left for the reader
<br/> END
<br/>IF (@Indicator2ARunAtLastCyclePoint = 1)
<br/> BEGIN
<br/> INSERT @tblPrimeFactors
<br/> SELECT
<br/> TaskId = 2
<br/> ,PrimeFactor
<br/> FROM dbo.tvfGetPrimeFactors(@constCycleTimeJob2A) --Table-valued function left for the reader
<br/> END
<br/>IF (@Indicator3ARunAtLastCyclePoint = 1)
<br/> BEGIN
<br/> INSERT @tblPrimeFactors
<br/> SELECT
<br/> TaskId = 3
<br/> ,PrimeFactor
<br/> FROM dbo.tvfGetPrimeFactors(@constCycleTimeJob3A) --Table-valued function left for the reader
<br/> END
<br/>
<br/>
<br/>--Calculate the LCM, which can serve as an effective time
<br/>--Utilizes SQL Server dynamic table capability
<br/>--(Inner select statements w/in parenthesis and given the alias names t0 & t1 below)
<br/>DECLARE @LCM int
<br/>
<br/>SELECT
<br/> --Fun w/ logs/powers to effect a product aggregate function
<br/> @LCM = Power(sum(log10(power(PrimeFactor,Frequency))),10)
<br/>FROM
<br/> (
<br/> SELECT
<br/> PrimeFactor
<br/> ,Frequency = max(Frequency)
<br/> FROM
<br/> (
<br/> SELECT
<br/> PrimeFactor
<br/> ,Frequency = count(*)
<br/> FROM @tblPrimeFactors
<br/> GROUP BY
<br/> TaskId
<br/> ,PrimeFactor
<br/> ) t0
<br/> ) t1
<br/>
<br/>DECLARE @TimeLastJob int
<br/>DECLARE @TimeNextJob int
<br/>SET @TimeLastJob = @LCM
<br/>SET @TimeNextJob = @TimeLastJob + @constEvaluationPeriodLength
<br/>
<br/>SELECT
<br/> Indicator1A = 1 - SIGN(@TimeNextJob % @constCycleTimeJob1A)
<br/> ,Indicator2A = 1 - SIGN(@TimeNextJob % @constCycleTimeJob2A)
<br/> ,Indicator3A = 1 - SIGN(@TimeNextJob % @constCycleTimeJob3A)
</blockquote>
<p><hr /></p>
<p><b>Original:</b></p>
<p>The modulus operataor % should do the trick</p>
<p>If I'm reading this correctly, you do have the time of the last task</p>
<ul>
<li>t=1000 or</li>
<li>t=5000</li>
</ul>
<p>and frequency of task selection evaluation is every 500 hours.</p>
<p>Try varying @TimeLastJob to see if the script below provides you w/ what you need</p>
<blockquote>
DECLARE @constEvaluationPeriodLength int
<br/>DECLARE @constCycleTimeJob1A int
<br/>DECLARE @constCycleTimeJob2A int
<br/>DECLARE @constCycleTimeJob3A int
<br/>
<br/>SET @constEvaluationPeriodLength = 500
<br/>SET @constCycleTimeJob1A = 500
<br/>SET @constCycleTimeJob2A = 1000
<br/>SET @constCycleTimeJob3A = 1500
<br/>
<br/>DECLARE @TimeLastJob int
<br/>DECLARE @TimeNextJob int
<br/>--SET @TimeLastJob = 1000
<br/>SET @TimeLastJob =5000
<br/>SET @TimeNextJob = @TimeLastJob + @constEvaluationPeriodLength
<br/>
<br/>SELECT
<br/> Indicator1A = 1 - SIGN(@TimeNextJob % @constCycleTimeJob1A)
<br/> ,Indicator2A = 1 - SIGN(@TimeNextJob % @constCycleTimeJob2A)
<br/> ,Indicator3A = 1 - SIGN(@TimeNextJob % @constCycleTimeJob3A)
</blockquote>
http://stackoverflow.com/questions/162752/algorithm-to-calculate-next-set-in-sequence/195813#1958130Answer by HUAGHAGUAH for Algorithm to calculate next set in sequenceHUAGHAGUAH2008-10-12T18:20:02Z2008-10-12T18:20:02Z<p>Prerequisites:</p>
<ol>
<li>Calculate the LCM of the tasks' time; this is the period of a full cycle.</li>
<li>Compute the event timeline for the full cycle.</li>
</ol>
<p>As each task / group of tasks is started, move an index through the timeline.</p>
http://stackoverflow.com/questions/162752/algorithm-to-calculate-next-set-in-sequence/195931#1959311Answer by Simon Lehmann for Algorithm to calculate next set in sequenceSimon Lehmann2008-10-12T19:49:33Z2008-10-12T19:49:33Z<p>Bill the Lizard is right. Here is how to determine the task intervals from the history (in Python):</p>
<pre><code>history = [list of tuples like (timestamp, (A, B, ...)), ordered by timestamp]
lastTaskTime = {}
taskIntervals = {}
for timestamp, tasks in history:
for task in tasks:
if task not in lastTaskTime:
lastTaskTime[task] = timestamp
else:
lastTimestamp = lastTaskTime[task]
interval = abs(timestamp - lastTimestamp)
if task not in taskIntervals or interval < taskIntervals[task]:
taskIntervals[task] = interval # Found a shorter interval
# Always remember the last timestamp
lastTaskTime[task] = timestamp
# taskIntervals contains the shortest time intervals of each tasks executed at least twice in the past
# lastTaskTime contains the last time each task was executed
</code></pre>
<p>To get the set of tasks, which will be executed next:</p>
<pre><code>nextTime = None
nextTasks = []
for task in lastTaskTime:
lastTime = lastTaskTime[task]
interval = taskIntervals[task]
if not nextTime or lastTime + interval < nextTime:
nextTime = lastTime + interval
nextTasks = [task]
elif lastTime + interval == nextTime:
nextTasks.append(task)
# nextTime contains the time when the next set of tasks will be executed
# nextTasks contains the set of tasks to be executed
</code></pre>
http://stackoverflow.com/questions/162752/algorithm-to-calculate-next-set-in-sequence/201512#2015120Answer by egiboy for Algorithm to calculate next set in sequenceegiboy2008-10-14T14:57:28Z2008-10-14T14:57:28Z<p>This is FizzBuzz in disguise. </p>
<p>Instead of the usual mapping of 3 to "Fizz" and 5 to "Buzz", we have the mappings of 500 to Task 1A, 1000 to Task 2A and 3 to Task 3A and so on. </p>
<p>An exhaustive list of solutions (or near-misses :) ) can be found here: <a href="http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem">What is your solution to the FizzBuzz problem?</a></p>