Welcome, Read the following carefully

Revision en1, by OmarioVIC, 2021-08-22 10:39:45

// Always think of patterns (LCM, GCD) // Be careful of unsigned // Think of a solution that gets TLE and optimize it // Use binary search // Solve on paper first // Reverse Thinking // Monotonic stack/dequeue // EV is computed using probabilities or number of ways // E(X + Y) = E(X) + E(Y) // E(X * Y) = E(X) * E(Y) // If there's an equation, transform it into an easy one // Try not to use doubles // Don't do DP in graphs on anything rather than DAGs // Don't use the fucking "double" // READ ALL PROBLEMS

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en2 English OmarioVIC 2021-08-22 18:51:27 524
en1 English OmarioVIC 2021-08-22 10:39:45 560 Initial revision (published)