Editing Simulation

Jump to: navigation, search

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.
Latest revision Your text
Line 3: Line 3:
 
== Example ==
 
== Example ==
 
=== Problem ===
 
=== Problem ===
Given <math>M</math> trees and the number of days each tree takes to grow a fruit, compute the total number of fruits after <math>N</math> days.
+
Given M trees and the number of days each tree takes to grow a fruit, compute the total number of fruits after <math>N</math> days.
 
+
 
=== Solution ===
 
=== Solution ===
 
For each tree <math>i</math>, keep a variable <math>K_i</math> indicating the number of days it takes for the next fruit to grow. Simulate the situation day by day. On each day, decrease <math>K_i</math> by 1 and increase the fruit count by the number of <math>K_i</math>'s that equal zero, and reset these <math>K_i</math>'s. Output the total sum at the end.
 
For each tree <math>i</math>, keep a variable <math>K_i</math> indicating the number of days it takes for the next fruit to grow. Simulate the situation day by day. On each day, decrease <math>K_i</math> by 1 and increase the fruit count by the number of <math>K_i</math>'s that equal zero, and reset these <math>K_i</math>'s. Output the total sum at the end.

Please note that all contributions to PEGWiki are considered to be released under the Attribution 3.0 Unported (see PEGWiki:Copyrights for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource. Do not submit copyrighted work without permission!

Cancel | Editing help (opens in new window)