Yandex programming contest: AlarmsOptimal way to annihilate a list by removing items from the endsNumber of possible palindrome sequencesC++ implementation of Hackerrank's “Maximum Element in a Stack”CodeFights Quora botProgramming Contest - Snuke FestivalArea of the triangle generated by the hands of a clockDisplay a number as a product of its prime factorsMinimum Area Rectangle in SwiftStable-sorting all even numbers before odd numbers in a linked listGiven a string and a word dict, find all possible sentences

Grandpa has another non math question

What's the difference between DHCP and NAT? Are they mutually exclusive?

How to make a composition of functions prettier?

Magento 2 | Is there an observable event for when the checkout begins?

Do you need to let the DM know when you are multiclassing?

What exactly "triggers an additional time" in the interaction between Afterlife and Teysa Karlov?

What plausible reason could I give for my FTL drive only working in space

How (un)safe is it to ride barefoot?

What does the homotopy coherent nerve do to spaces of enriched functors?

Suppose leased car is totalled: what are financial implications?

How do I make a Magical Dart Thrower more economical in Adventurers League?

Why would a home insurer offer a discount based on credit score?

Why is my power MOSFET heating up when on?

What is Gilligan's full Name?

Why is long-term living in Almost-Earth causing severe health problems?

In Pandemic, why take the extra step of eradicating a disease after you've cured it?

Was planting UN flag on Moon ever discussed?

Part of my house is inexplicably gone

How to avoid typing 'git' at the begining of every Git command

Enchiridion, 16: Does a stoic moan, or not?

How to show a "node near coord" even when it is out of bounds (with clip = true)?

Parsing text written the millitext font

How many sets of dice do I need for D&D?

Why do the TIE Fighter pilot helmets have similar ridges as the rebels?



Yandex programming contest: Alarms


Optimal way to annihilate a list by removing items from the endsNumber of possible palindrome sequencesC++ implementation of Hackerrank's “Maximum Element in a Stack”CodeFights Quora botProgramming Contest - Snuke FestivalArea of the triangle generated by the hands of a clockDisplay a number as a product of its prime factorsMinimum Area Rectangle in SwiftStable-sorting all even numbers before odd numbers in a linked listGiven a string and a word dict, find all possible sentences






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








17












$begingroup$


I've tried to solve this challenge about 4 hours during the contest, but all my attempts exceeded the time limit. I tried to solve it with min-heap, but can't pass all the tests. How it can be solved within given time and space requirements?




Problem statement



Programmer Alexey likes to work at night and does not like to come to
work late. In order to precisely wake up in the morning, Alexey every
evening starts $N$ alarm clocks on his phone. Each alarm clock is
arranged in such a way that it rings every $X$ minutes from the time
at which it was turned on.



For example, if the alarm clock was started at the moment of time
$t_i$, then it will ring at the moments of time $t_i, t_i + X, t_i + 2 * X$ and so on. Moreover, if some two alarms begin to ring at one time, only one of them is displayed.



It is known that before waking up, Alexey listens every morning to
exactly $K$ alarm clocks, and then wakes up. Determine the point in
time when Alex wakes up.



Input format



Input format The first line contains three integers. $N, X$ and $K$ $(1 ≤ N ≤10^5, 1≤X, K≤10^9)$ - the number of alarms, the frequency of
calls and the number of alarms that need to be turned off in order for
Alex to wake up. The second line contains N integers - the points in
time at which the alarm clocks were entered.



Requirements



Time limit: 2 seconds
Memory limit: 256Mb


Examples



Example 1



Input



6 5 10
1 2 3 4 5 6


Output 10



Example 2



Input



5 7 12
5 22 17 13 8


Output 27



Notes



In the second example, there are 5 alarm clocks with a frequency of 7
calls. For example, the first alarm clock will ring at times 5, 12,
19, 26, 33, etc. If you look at all the alarms at the same time, they
will ring at the following times: 5, 8, 12, 13, 15, 17, 19, 20, 22
(2nd and 5th alarm clocks at the same time), 24, 26, 27, 29,…. On the
12th call Alexey must wake up, What corresponds to the point in time
27.




My solution



Classified as "time limit exceeded"



import heapq


def main():
n, x, k = map(int, input().split(" "))
times = list(map(int, input().split(" ")))

heapq.heapify(times)

answers = []

while k:
v = heapq.heappop(times)
heapq.heappush(times, v + x)

if len(answers) == 0 or answers[len(answers)-1] != v:
answers.append(v)
k -= 1

print(answers[k-1])


if __name__ == "__main__":
main()









share|improve this question











$endgroup$







  • 1




    $begingroup$
    Did you write this for Python 2 or 3?
    $endgroup$
    – Mast
    May 28 at 18:12






  • 1




    $begingroup$
    I used Python 3.7
    $endgroup$
    – maksadbek
    May 28 at 18:30

















17












$begingroup$


I've tried to solve this challenge about 4 hours during the contest, but all my attempts exceeded the time limit. I tried to solve it with min-heap, but can't pass all the tests. How it can be solved within given time and space requirements?




Problem statement



Programmer Alexey likes to work at night and does not like to come to
work late. In order to precisely wake up in the morning, Alexey every
evening starts $N$ alarm clocks on his phone. Each alarm clock is
arranged in such a way that it rings every $X$ minutes from the time
at which it was turned on.



For example, if the alarm clock was started at the moment of time
$t_i$, then it will ring at the moments of time $t_i, t_i + X, t_i + 2 * X$ and so on. Moreover, if some two alarms begin to ring at one time, only one of them is displayed.



It is known that before waking up, Alexey listens every morning to
exactly $K$ alarm clocks, and then wakes up. Determine the point in
time when Alex wakes up.



Input format



Input format The first line contains three integers. $N, X$ and $K$ $(1 ≤ N ≤10^5, 1≤X, K≤10^9)$ - the number of alarms, the frequency of
calls and the number of alarms that need to be turned off in order for
Alex to wake up. The second line contains N integers - the points in
time at which the alarm clocks were entered.



Requirements



Time limit: 2 seconds
Memory limit: 256Mb


Examples



Example 1



Input



6 5 10
1 2 3 4 5 6


Output 10



Example 2



Input



5 7 12
5 22 17 13 8


Output 27



Notes



In the second example, there are 5 alarm clocks with a frequency of 7
calls. For example, the first alarm clock will ring at times 5, 12,
19, 26, 33, etc. If you look at all the alarms at the same time, they
will ring at the following times: 5, 8, 12, 13, 15, 17, 19, 20, 22
(2nd and 5th alarm clocks at the same time), 24, 26, 27, 29,…. On the
12th call Alexey must wake up, What corresponds to the point in time
27.




My solution



Classified as "time limit exceeded"



import heapq


def main():
n, x, k = map(int, input().split(" "))
times = list(map(int, input().split(" ")))

heapq.heapify(times)

answers = []

while k:
v = heapq.heappop(times)
heapq.heappush(times, v + x)

if len(answers) == 0 or answers[len(answers)-1] != v:
answers.append(v)
k -= 1

print(answers[k-1])


if __name__ == "__main__":
main()









share|improve this question











$endgroup$







  • 1




    $begingroup$
    Did you write this for Python 2 or 3?
    $endgroup$
    – Mast
    May 28 at 18:12






  • 1




    $begingroup$
    I used Python 3.7
    $endgroup$
    – maksadbek
    May 28 at 18:30













17












17








17


4



$begingroup$


I've tried to solve this challenge about 4 hours during the contest, but all my attempts exceeded the time limit. I tried to solve it with min-heap, but can't pass all the tests. How it can be solved within given time and space requirements?




Problem statement



Programmer Alexey likes to work at night and does not like to come to
work late. In order to precisely wake up in the morning, Alexey every
evening starts $N$ alarm clocks on his phone. Each alarm clock is
arranged in such a way that it rings every $X$ minutes from the time
at which it was turned on.



For example, if the alarm clock was started at the moment of time
$t_i$, then it will ring at the moments of time $t_i, t_i + X, t_i + 2 * X$ and so on. Moreover, if some two alarms begin to ring at one time, only one of them is displayed.



It is known that before waking up, Alexey listens every morning to
exactly $K$ alarm clocks, and then wakes up. Determine the point in
time when Alex wakes up.



Input format



Input format The first line contains three integers. $N, X$ and $K$ $(1 ≤ N ≤10^5, 1≤X, K≤10^9)$ - the number of alarms, the frequency of
calls and the number of alarms that need to be turned off in order for
Alex to wake up. The second line contains N integers - the points in
time at which the alarm clocks were entered.



Requirements



Time limit: 2 seconds
Memory limit: 256Mb


Examples



Example 1



Input



6 5 10
1 2 3 4 5 6


Output 10



Example 2



Input



5 7 12
5 22 17 13 8


Output 27



Notes



In the second example, there are 5 alarm clocks with a frequency of 7
calls. For example, the first alarm clock will ring at times 5, 12,
19, 26, 33, etc. If you look at all the alarms at the same time, they
will ring at the following times: 5, 8, 12, 13, 15, 17, 19, 20, 22
(2nd and 5th alarm clocks at the same time), 24, 26, 27, 29,…. On the
12th call Alexey must wake up, What corresponds to the point in time
27.




My solution



Classified as "time limit exceeded"



import heapq


def main():
n, x, k = map(int, input().split(" "))
times = list(map(int, input().split(" ")))

heapq.heapify(times)

answers = []

while k:
v = heapq.heappop(times)
heapq.heappush(times, v + x)

if len(answers) == 0 or answers[len(answers)-1] != v:
answers.append(v)
k -= 1

print(answers[k-1])


if __name__ == "__main__":
main()









share|improve this question











$endgroup$




I've tried to solve this challenge about 4 hours during the contest, but all my attempts exceeded the time limit. I tried to solve it with min-heap, but can't pass all the tests. How it can be solved within given time and space requirements?




Problem statement



Programmer Alexey likes to work at night and does not like to come to
work late. In order to precisely wake up in the morning, Alexey every
evening starts $N$ alarm clocks on his phone. Each alarm clock is
arranged in such a way that it rings every $X$ minutes from the time
at which it was turned on.



For example, if the alarm clock was started at the moment of time
$t_i$, then it will ring at the moments of time $t_i, t_i + X, t_i + 2 * X$ and so on. Moreover, if some two alarms begin to ring at one time, only one of them is displayed.



It is known that before waking up, Alexey listens every morning to
exactly $K$ alarm clocks, and then wakes up. Determine the point in
time when Alex wakes up.



Input format



Input format The first line contains three integers. $N, X$ and $K$ $(1 ≤ N ≤10^5, 1≤X, K≤10^9)$ - the number of alarms, the frequency of
calls and the number of alarms that need to be turned off in order for
Alex to wake up. The second line contains N integers - the points in
time at which the alarm clocks were entered.



Requirements



Time limit: 2 seconds
Memory limit: 256Mb


Examples



Example 1



Input



6 5 10
1 2 3 4 5 6


Output 10



Example 2



Input



5 7 12
5 22 17 13 8


Output 27



Notes



In the second example, there are 5 alarm clocks with a frequency of 7
calls. For example, the first alarm clock will ring at times 5, 12,
19, 26, 33, etc. If you look at all the alarms at the same time, they
will ring at the following times: 5, 8, 12, 13, 15, 17, 19, 20, 22
(2nd and 5th alarm clocks at the same time), 24, 26, 27, 29,…. On the
12th call Alexey must wake up, What corresponds to the point in time
27.




My solution



Classified as "time limit exceeded"



import heapq


def main():
n, x, k = map(int, input().split(" "))
times = list(map(int, input().split(" ")))

heapq.heapify(times)

answers = []

while k:
v = heapq.heappop(times)
heapq.heappush(times, v + x)

if len(answers) == 0 or answers[len(answers)-1] != v:
answers.append(v)
k -= 1

print(answers[k-1])


if __name__ == "__main__":
main()






python algorithm python-3.x programming-challenge time-limit-exceeded






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited May 29 at 5:49









Mast

7,80363790




7,80363790










asked May 27 at 12:52









maksadbekmaksadbek

1917




1917







  • 1




    $begingroup$
    Did you write this for Python 2 or 3?
    $endgroup$
    – Mast
    May 28 at 18:12






  • 1




    $begingroup$
    I used Python 3.7
    $endgroup$
    – maksadbek
    May 28 at 18:30












  • 1




    $begingroup$
    Did you write this for Python 2 or 3?
    $endgroup$
    – Mast
    May 28 at 18:12






  • 1




    $begingroup$
    I used Python 3.7
    $endgroup$
    – maksadbek
    May 28 at 18:30







1




1




$begingroup$
Did you write this for Python 2 or 3?
$endgroup$
– Mast
May 28 at 18:12




$begingroup$
Did you write this for Python 2 or 3?
$endgroup$
– Mast
May 28 at 18:12




1




1




$begingroup$
I used Python 3.7
$endgroup$
– maksadbek
May 28 at 18:30




$begingroup$
I used Python 3.7
$endgroup$
– maksadbek
May 28 at 18:30










2 Answers
2






active

oldest

votes


















13












$begingroup$

Not all counting problems require enumerating the items being counted. If you were asked to count how many sheep there are in total if there are $n$ trucks with $k$ sheep each, you could write something like:



total_sheep = 0
for truck in range(n):
for sheep in range(k):
total_sheep += 1


Or you could cut to the chase and compute it as:



total_sheep = n * k


The problem you are trying to solve is more subtle, but can be attacked in a similar fashion. Modular arithmetic will be your friend in doing this. Rather than looking at the setting times as single numbers, convert them to tuples of (quotient, remainder) after dividing by $X$. This would e.g. convert the list of times for the second example into:



 5 --> (0, 5)
22 --> (3, 1)
17 --> (2, 3)
13 --> (1, 6)
8 --> (1, 1)


We can use this information to prune the list of alarms: if any two alarms have the same remainder, they will ring at the same time, so we only need to keep the smaller one. This would convert the above list, after also sorting it, into:



 5 --> (0, 5)
8 --> (1, 1)
13 --> (1, 6)
17 --> (2, 3)


Those two numbers tell us in which of the $X$ minute periods the alarm sounds for the first time, and at what offset into that period does it first go off. So we can process it sequentially and know that:



  • at the end of the first (0) period, 1 alarm has sounded for the first time, a total of 1 alarm will sound in every subsequent period, and the total number of alarms sounded is also 1.

  • at the end of the second (1) period, 2 alarms have sounded for the first time, 3 alarms will sound in every subsequent period, and the total number of alarms sounded is 4.

  • at the end of the third (2) period, 1 new alarm has sounded, 4 alarms will sound every period, and a total of 8 alarms will have sounded.

Since there are no more alarms to process, we have 8 alarms so far, 4 more sounding each period, and want to reach a total of 12, some simple math tells us that this will happen during the fourth (3) period, and that it will be the last of the alarms that will reach it.



To make the math more clear, lets imagine that we wanted to reach a total of 14 alarms instead. Since 8 have already sounded, we have 14 - 8 = 6 more to go. Since 4 alarms will sound in each period, and the quotient and remainder of 6 divided by 4 are 1 and 2, we know that we will reach our target after 1 full more period, plus 2 of the four alarms in the next period. This translates to 4 full periods, plus the time for the second alarm in that period to sound. The time of 4 full periods is 7 * 4 = 28. We need to add the offset of the second alarm when sorting them by offset, not by start time, so we need to add 3, not 1, and the end result would be 31.



This general outline omits many gruesome details, like what to do if we reach the target number of alarms before we finish processing the list. And the math described above is hard to get right in all corner cases, as there are many chances for off-by-one errors. I'm not going to spoil the fun for you by coding it up: give a try, and I'll be happy to review your next version.






share|improve this answer









$endgroup$








  • 7




    $begingroup$
    Yes, math is the way. I believe the condition "K < 10^9" was intended as a subtle hint that iteration is not a viable approach. A billion alarms to wake up: that's my hero :)
    $endgroup$
    – IMil
    May 28 at 0:05










  • $begingroup$
    This looks like a nice exercise for learning to handle data structures in python.
    $endgroup$
    – JollyJoker
    May 28 at 8:59


















10












$begingroup$

The minheap approach seems correct. The problem is in the answers. It may grow quite large (up to $10^9$). All the reallocations due to its growth are very costly.



However you don't need it at all. You only care about the time of the most recent alarm. Just one value:



 while k:
v = heapq.heappop(times)
heapq.heappush(times, v + x)

if last_alarm != v:
last_alarm = v
k -= 1


That said, an idiomatic way to access the last element of the list is answers[-1].






share|improve this answer









$endgroup$








  • 2




    $begingroup$
    Exactly! But, I suppose iterating over k is not a right approach too: for i in range(10 ** 9): pass takes more than 2s.
    $endgroup$
    – maksadbek
    May 27 at 14:32











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "196"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f221113%2fyandex-programming-contest-alarms%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes









13












$begingroup$

Not all counting problems require enumerating the items being counted. If you were asked to count how many sheep there are in total if there are $n$ trucks with $k$ sheep each, you could write something like:



total_sheep = 0
for truck in range(n):
for sheep in range(k):
total_sheep += 1


Or you could cut to the chase and compute it as:



total_sheep = n * k


The problem you are trying to solve is more subtle, but can be attacked in a similar fashion. Modular arithmetic will be your friend in doing this. Rather than looking at the setting times as single numbers, convert them to tuples of (quotient, remainder) after dividing by $X$. This would e.g. convert the list of times for the second example into:



 5 --> (0, 5)
22 --> (3, 1)
17 --> (2, 3)
13 --> (1, 6)
8 --> (1, 1)


We can use this information to prune the list of alarms: if any two alarms have the same remainder, they will ring at the same time, so we only need to keep the smaller one. This would convert the above list, after also sorting it, into:



 5 --> (0, 5)
8 --> (1, 1)
13 --> (1, 6)
17 --> (2, 3)


Those two numbers tell us in which of the $X$ minute periods the alarm sounds for the first time, and at what offset into that period does it first go off. So we can process it sequentially and know that:



  • at the end of the first (0) period, 1 alarm has sounded for the first time, a total of 1 alarm will sound in every subsequent period, and the total number of alarms sounded is also 1.

  • at the end of the second (1) period, 2 alarms have sounded for the first time, 3 alarms will sound in every subsequent period, and the total number of alarms sounded is 4.

  • at the end of the third (2) period, 1 new alarm has sounded, 4 alarms will sound every period, and a total of 8 alarms will have sounded.

Since there are no more alarms to process, we have 8 alarms so far, 4 more sounding each period, and want to reach a total of 12, some simple math tells us that this will happen during the fourth (3) period, and that it will be the last of the alarms that will reach it.



To make the math more clear, lets imagine that we wanted to reach a total of 14 alarms instead. Since 8 have already sounded, we have 14 - 8 = 6 more to go. Since 4 alarms will sound in each period, and the quotient and remainder of 6 divided by 4 are 1 and 2, we know that we will reach our target after 1 full more period, plus 2 of the four alarms in the next period. This translates to 4 full periods, plus the time for the second alarm in that period to sound. The time of 4 full periods is 7 * 4 = 28. We need to add the offset of the second alarm when sorting them by offset, not by start time, so we need to add 3, not 1, and the end result would be 31.



This general outline omits many gruesome details, like what to do if we reach the target number of alarms before we finish processing the list. And the math described above is hard to get right in all corner cases, as there are many chances for off-by-one errors. I'm not going to spoil the fun for you by coding it up: give a try, and I'll be happy to review your next version.






share|improve this answer









$endgroup$








  • 7




    $begingroup$
    Yes, math is the way. I believe the condition "K < 10^9" was intended as a subtle hint that iteration is not a viable approach. A billion alarms to wake up: that's my hero :)
    $endgroup$
    – IMil
    May 28 at 0:05










  • $begingroup$
    This looks like a nice exercise for learning to handle data structures in python.
    $endgroup$
    – JollyJoker
    May 28 at 8:59















13












$begingroup$

Not all counting problems require enumerating the items being counted. If you were asked to count how many sheep there are in total if there are $n$ trucks with $k$ sheep each, you could write something like:



total_sheep = 0
for truck in range(n):
for sheep in range(k):
total_sheep += 1


Or you could cut to the chase and compute it as:



total_sheep = n * k


The problem you are trying to solve is more subtle, but can be attacked in a similar fashion. Modular arithmetic will be your friend in doing this. Rather than looking at the setting times as single numbers, convert them to tuples of (quotient, remainder) after dividing by $X$. This would e.g. convert the list of times for the second example into:



 5 --> (0, 5)
22 --> (3, 1)
17 --> (2, 3)
13 --> (1, 6)
8 --> (1, 1)


We can use this information to prune the list of alarms: if any two alarms have the same remainder, they will ring at the same time, so we only need to keep the smaller one. This would convert the above list, after also sorting it, into:



 5 --> (0, 5)
8 --> (1, 1)
13 --> (1, 6)
17 --> (2, 3)


Those two numbers tell us in which of the $X$ minute periods the alarm sounds for the first time, and at what offset into that period does it first go off. So we can process it sequentially and know that:



  • at the end of the first (0) period, 1 alarm has sounded for the first time, a total of 1 alarm will sound in every subsequent period, and the total number of alarms sounded is also 1.

  • at the end of the second (1) period, 2 alarms have sounded for the first time, 3 alarms will sound in every subsequent period, and the total number of alarms sounded is 4.

  • at the end of the third (2) period, 1 new alarm has sounded, 4 alarms will sound every period, and a total of 8 alarms will have sounded.

Since there are no more alarms to process, we have 8 alarms so far, 4 more sounding each period, and want to reach a total of 12, some simple math tells us that this will happen during the fourth (3) period, and that it will be the last of the alarms that will reach it.



To make the math more clear, lets imagine that we wanted to reach a total of 14 alarms instead. Since 8 have already sounded, we have 14 - 8 = 6 more to go. Since 4 alarms will sound in each period, and the quotient and remainder of 6 divided by 4 are 1 and 2, we know that we will reach our target after 1 full more period, plus 2 of the four alarms in the next period. This translates to 4 full periods, plus the time for the second alarm in that period to sound. The time of 4 full periods is 7 * 4 = 28. We need to add the offset of the second alarm when sorting them by offset, not by start time, so we need to add 3, not 1, and the end result would be 31.



This general outline omits many gruesome details, like what to do if we reach the target number of alarms before we finish processing the list. And the math described above is hard to get right in all corner cases, as there are many chances for off-by-one errors. I'm not going to spoil the fun for you by coding it up: give a try, and I'll be happy to review your next version.






share|improve this answer









$endgroup$








  • 7




    $begingroup$
    Yes, math is the way. I believe the condition "K < 10^9" was intended as a subtle hint that iteration is not a viable approach. A billion alarms to wake up: that's my hero :)
    $endgroup$
    – IMil
    May 28 at 0:05










  • $begingroup$
    This looks like a nice exercise for learning to handle data structures in python.
    $endgroup$
    – JollyJoker
    May 28 at 8:59













13












13








13





$begingroup$

Not all counting problems require enumerating the items being counted. If you were asked to count how many sheep there are in total if there are $n$ trucks with $k$ sheep each, you could write something like:



total_sheep = 0
for truck in range(n):
for sheep in range(k):
total_sheep += 1


Or you could cut to the chase and compute it as:



total_sheep = n * k


The problem you are trying to solve is more subtle, but can be attacked in a similar fashion. Modular arithmetic will be your friend in doing this. Rather than looking at the setting times as single numbers, convert them to tuples of (quotient, remainder) after dividing by $X$. This would e.g. convert the list of times for the second example into:



 5 --> (0, 5)
22 --> (3, 1)
17 --> (2, 3)
13 --> (1, 6)
8 --> (1, 1)


We can use this information to prune the list of alarms: if any two alarms have the same remainder, they will ring at the same time, so we only need to keep the smaller one. This would convert the above list, after also sorting it, into:



 5 --> (0, 5)
8 --> (1, 1)
13 --> (1, 6)
17 --> (2, 3)


Those two numbers tell us in which of the $X$ minute periods the alarm sounds for the first time, and at what offset into that period does it first go off. So we can process it sequentially and know that:



  • at the end of the first (0) period, 1 alarm has sounded for the first time, a total of 1 alarm will sound in every subsequent period, and the total number of alarms sounded is also 1.

  • at the end of the second (1) period, 2 alarms have sounded for the first time, 3 alarms will sound in every subsequent period, and the total number of alarms sounded is 4.

  • at the end of the third (2) period, 1 new alarm has sounded, 4 alarms will sound every period, and a total of 8 alarms will have sounded.

Since there are no more alarms to process, we have 8 alarms so far, 4 more sounding each period, and want to reach a total of 12, some simple math tells us that this will happen during the fourth (3) period, and that it will be the last of the alarms that will reach it.



To make the math more clear, lets imagine that we wanted to reach a total of 14 alarms instead. Since 8 have already sounded, we have 14 - 8 = 6 more to go. Since 4 alarms will sound in each period, and the quotient and remainder of 6 divided by 4 are 1 and 2, we know that we will reach our target after 1 full more period, plus 2 of the four alarms in the next period. This translates to 4 full periods, plus the time for the second alarm in that period to sound. The time of 4 full periods is 7 * 4 = 28. We need to add the offset of the second alarm when sorting them by offset, not by start time, so we need to add 3, not 1, and the end result would be 31.



This general outline omits many gruesome details, like what to do if we reach the target number of alarms before we finish processing the list. And the math described above is hard to get right in all corner cases, as there are many chances for off-by-one errors. I'm not going to spoil the fun for you by coding it up: give a try, and I'll be happy to review your next version.






share|improve this answer









$endgroup$



Not all counting problems require enumerating the items being counted. If you were asked to count how many sheep there are in total if there are $n$ trucks with $k$ sheep each, you could write something like:



total_sheep = 0
for truck in range(n):
for sheep in range(k):
total_sheep += 1


Or you could cut to the chase and compute it as:



total_sheep = n * k


The problem you are trying to solve is more subtle, but can be attacked in a similar fashion. Modular arithmetic will be your friend in doing this. Rather than looking at the setting times as single numbers, convert them to tuples of (quotient, remainder) after dividing by $X$. This would e.g. convert the list of times for the second example into:



 5 --> (0, 5)
22 --> (3, 1)
17 --> (2, 3)
13 --> (1, 6)
8 --> (1, 1)


We can use this information to prune the list of alarms: if any two alarms have the same remainder, they will ring at the same time, so we only need to keep the smaller one. This would convert the above list, after also sorting it, into:



 5 --> (0, 5)
8 --> (1, 1)
13 --> (1, 6)
17 --> (2, 3)


Those two numbers tell us in which of the $X$ minute periods the alarm sounds for the first time, and at what offset into that period does it first go off. So we can process it sequentially and know that:



  • at the end of the first (0) period, 1 alarm has sounded for the first time, a total of 1 alarm will sound in every subsequent period, and the total number of alarms sounded is also 1.

  • at the end of the second (1) period, 2 alarms have sounded for the first time, 3 alarms will sound in every subsequent period, and the total number of alarms sounded is 4.

  • at the end of the third (2) period, 1 new alarm has sounded, 4 alarms will sound every period, and a total of 8 alarms will have sounded.

Since there are no more alarms to process, we have 8 alarms so far, 4 more sounding each period, and want to reach a total of 12, some simple math tells us that this will happen during the fourth (3) period, and that it will be the last of the alarms that will reach it.



To make the math more clear, lets imagine that we wanted to reach a total of 14 alarms instead. Since 8 have already sounded, we have 14 - 8 = 6 more to go. Since 4 alarms will sound in each period, and the quotient and remainder of 6 divided by 4 are 1 and 2, we know that we will reach our target after 1 full more period, plus 2 of the four alarms in the next period. This translates to 4 full periods, plus the time for the second alarm in that period to sound. The time of 4 full periods is 7 * 4 = 28. We need to add the offset of the second alarm when sorting them by offset, not by start time, so we need to add 3, not 1, and the end result would be 31.



This general outline omits many gruesome details, like what to do if we reach the target number of alarms before we finish processing the list. And the math described above is hard to get right in all corner cases, as there are many chances for off-by-one errors. I'm not going to spoil the fun for you by coding it up: give a try, and I'll be happy to review your next version.







share|improve this answer












share|improve this answer



share|improve this answer










answered May 27 at 15:27









JaimeJaime

6,0971429




6,0971429







  • 7




    $begingroup$
    Yes, math is the way. I believe the condition "K < 10^9" was intended as a subtle hint that iteration is not a viable approach. A billion alarms to wake up: that's my hero :)
    $endgroup$
    – IMil
    May 28 at 0:05










  • $begingroup$
    This looks like a nice exercise for learning to handle data structures in python.
    $endgroup$
    – JollyJoker
    May 28 at 8:59












  • 7




    $begingroup$
    Yes, math is the way. I believe the condition "K < 10^9" was intended as a subtle hint that iteration is not a viable approach. A billion alarms to wake up: that's my hero :)
    $endgroup$
    – IMil
    May 28 at 0:05










  • $begingroup$
    This looks like a nice exercise for learning to handle data structures in python.
    $endgroup$
    – JollyJoker
    May 28 at 8:59







7




7




$begingroup$
Yes, math is the way. I believe the condition "K < 10^9" was intended as a subtle hint that iteration is not a viable approach. A billion alarms to wake up: that's my hero :)
$endgroup$
– IMil
May 28 at 0:05




$begingroup$
Yes, math is the way. I believe the condition "K < 10^9" was intended as a subtle hint that iteration is not a viable approach. A billion alarms to wake up: that's my hero :)
$endgroup$
– IMil
May 28 at 0:05












$begingroup$
This looks like a nice exercise for learning to handle data structures in python.
$endgroup$
– JollyJoker
May 28 at 8:59




$begingroup$
This looks like a nice exercise for learning to handle data structures in python.
$endgroup$
– JollyJoker
May 28 at 8:59













10












$begingroup$

The minheap approach seems correct. The problem is in the answers. It may grow quite large (up to $10^9$). All the reallocations due to its growth are very costly.



However you don't need it at all. You only care about the time of the most recent alarm. Just one value:



 while k:
v = heapq.heappop(times)
heapq.heappush(times, v + x)

if last_alarm != v:
last_alarm = v
k -= 1


That said, an idiomatic way to access the last element of the list is answers[-1].






share|improve this answer









$endgroup$








  • 2




    $begingroup$
    Exactly! But, I suppose iterating over k is not a right approach too: for i in range(10 ** 9): pass takes more than 2s.
    $endgroup$
    – maksadbek
    May 27 at 14:32















10












$begingroup$

The minheap approach seems correct. The problem is in the answers. It may grow quite large (up to $10^9$). All the reallocations due to its growth are very costly.



However you don't need it at all. You only care about the time of the most recent alarm. Just one value:



 while k:
v = heapq.heappop(times)
heapq.heappush(times, v + x)

if last_alarm != v:
last_alarm = v
k -= 1


That said, an idiomatic way to access the last element of the list is answers[-1].






share|improve this answer









$endgroup$








  • 2




    $begingroup$
    Exactly! But, I suppose iterating over k is not a right approach too: for i in range(10 ** 9): pass takes more than 2s.
    $endgroup$
    – maksadbek
    May 27 at 14:32













10












10








10





$begingroup$

The minheap approach seems correct. The problem is in the answers. It may grow quite large (up to $10^9$). All the reallocations due to its growth are very costly.



However you don't need it at all. You only care about the time of the most recent alarm. Just one value:



 while k:
v = heapq.heappop(times)
heapq.heappush(times, v + x)

if last_alarm != v:
last_alarm = v
k -= 1


That said, an idiomatic way to access the last element of the list is answers[-1].






share|improve this answer









$endgroup$



The minheap approach seems correct. The problem is in the answers. It may grow quite large (up to $10^9$). All the reallocations due to its growth are very costly.



However you don't need it at all. You only care about the time of the most recent alarm. Just one value:



 while k:
v = heapq.heappop(times)
heapq.heappush(times, v + x)

if last_alarm != v:
last_alarm = v
k -= 1


That said, an idiomatic way to access the last element of the list is answers[-1].







share|improve this answer












share|improve this answer



share|improve this answer










answered May 27 at 14:08









vnpvnp

41.6k234106




41.6k234106







  • 2




    $begingroup$
    Exactly! But, I suppose iterating over k is not a right approach too: for i in range(10 ** 9): pass takes more than 2s.
    $endgroup$
    – maksadbek
    May 27 at 14:32












  • 2




    $begingroup$
    Exactly! But, I suppose iterating over k is not a right approach too: for i in range(10 ** 9): pass takes more than 2s.
    $endgroup$
    – maksadbek
    May 27 at 14:32







2




2




$begingroup$
Exactly! But, I suppose iterating over k is not a right approach too: for i in range(10 ** 9): pass takes more than 2s.
$endgroup$
– maksadbek
May 27 at 14:32




$begingroup$
Exactly! But, I suppose iterating over k is not a right approach too: for i in range(10 ** 9): pass takes more than 2s.
$endgroup$
– maksadbek
May 27 at 14:32

















draft saved

draft discarded
















































Thanks for contributing an answer to Code Review Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

Use MathJax to format equations. MathJax reference.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f221113%2fyandex-programming-contest-alarms%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

How to write a 12-bar blues melodyI-IV-V blues progressionHow to play the bridges in a standard blues progressionHow does Gdim7 fit in C# minor?question on a certain chord progressionMusicology of Melody12 bar blues, spread rhythm: alternative to 6th chord to avoid finger stretchChord progressions/ Root key/ MelodiesHow to put chords (POP-EDM) under a given lead vocal melody (starting from a good knowledge in music theory)Are there “rules” for improvising with the minor pentatonic scale over 12-bar shuffle?Confusion about blues scale and chords

What if the end-user didn't have the required library?What is setup.py?What is a clean, pythonic way to have multiple constructors in Python?What does Ruby have that Python doesn't, and vice versa?What is the reason for having '//' in Python?How do I create a namespace package in Python?How to package shared objects that python modules depend on?setuptools vs. distutils: why is distutils still a thing?Navigation in Windows 10 vs code not going to virtualenv library when the same library is installed at user levelPython create package for local usePackaging a project that uses multiple python versionsWhy is permission denied on pip install except for when “--user” is included at end of command?

Esgonzo ibérico Índice Descrición Distribución Hábitat Ameazas Notas Véxase tamén "Acerca dos nomes dos anfibios e réptiles galegos""Chalcides bedriagai"Chalcides bedriagai en Carrascal, L. M. Salvador, A. (Eds). Enciclopedia virtual de los vertebrados españoles. Museo Nacional de Ciencias Naturales, Madrid. España.Fotos