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

Do any instruments not produce overtones?

Etymology of 'calcit(r)are'?

My coworkers think I had a long honeymoon. Actually I was diagnosed with cancer. How do I talk about it?

What happened to all the nuclear material being smuggled after the fall of the USSR?

Will TSA allow me to carry a Continuous Positive Airway Pressure (CPAP)/sleep apnea device?

Can you `= delete` a templated function on a second declaration?

Accidentally renamed tar.gz file to a non tar.gz file, will my file be messed up

Smooth switching between 12v batteries, with toggle switch

Does the first version of Linux developed by Linus Torvalds have a GUI?

How do photons get into the eyes?

Efficiently merge lists chronologically without duplicates?

How to skip replacing first occurrence of a character in each line?

Why doesn't my simple mesh wall "difference boolean cut" the door away?

Is it possible for people to live in the eye of a permanent hypercane?

How to generate random points without duplication?

What's the correct term for a waitress in the Middle Ages?

What risks are there when you clear your cookies instead of logging off?

Did Darth Vader wear the same suit for 20+ years?

Traffic law UK, pedestrians

What is the advantage of carrying a tripod and ND-filters when you could use image stacking instead?

Avoiding cliches when writing gods

Who operates delivery flights for commercial airlines?

Through what methods and mechanisms can a multi-material FDM printer operate?

Can't login after removing Flatpak



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









New contributor



maksadbek is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






$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









New contributor



maksadbek is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






$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









New contributor



maksadbek is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






$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









New contributor



maksadbek is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.










share|improve this question









New contributor



maksadbek is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.








share|improve this question




share|improve this question








edited May 29 at 5:49









Mast

7,74363788




7,74363788






New contributor



maksadbek is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.








asked May 27 at 12:52









maksadbekmaksadbek

1917




1917




New contributor



maksadbek is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




New contributor




maksadbek is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









  • 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
);



);






maksadbek is a new contributor. Be nice, and check out our Code of Conduct.









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.3k234106




41.3k234106







  • 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










maksadbek is a new contributor. Be nice, and check out our Code of Conduct.









draft saved

draft discarded


















maksadbek is a new contributor. Be nice, and check out our Code of Conduct.












maksadbek is a new contributor. Be nice, and check out our Code of Conduct.











maksadbek is a new contributor. Be nice, and check out our Code of Conduct.














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

Get product attribute by attribute group code in magento 2get product attribute by product attribute group in magento 2Magento 2 Log Bundle Product Data in List Page?How to get all product attribute of a attribute group of Default attribute set?Magento 2.1 Create a filter in the product grid by new attributeMagento 2 : Get Product Attribute values By GroupMagento 2 How to get all existing values for one attributeMagento 2 get custom attribute of a single product inside a pluginMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?Magento2: how to develop rest API to get new productsGet product attribute by attribute group code ( [attribute_group_code] ) in magento 2

Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

Magento 2.3: How do i solve this, Not registered handle, on custom form?How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2.3 : File Upload issue in UI Component FormMagento2 Not registered handleHow to configured Form Builder Js in my custom magento 2.3.0 module?Magento 2.3. How to create image upload field in an admin form