ผลต่างระหว่างรุ่นของ "Algo lab/hints/recursions"

จาก Theory Wiki
ไปยังการนำทาง ไปยังการค้นหา
(สร้างหน้าด้วย "This page gives hints on recursive & divide-and-conquer tasks. Get the [Algo_lab/templates/recursions templates here]. * uva11057_exactsum: try all fir...")
 
 
(ไม่แสดง 1 รุ่นระหว่างกลางโดยผู้ใช้คนเดียวกัน)
แถว 1: แถว 1:
 
This page gives hints on recursive & divide-and-conquer tasks.
 
This page gives hints on recursive & divide-and-conquer tasks.
  
Get the [Algo_lab/templates/recursions templates here].
+
Get the [[Algo_lab/templates/recursions|templates here]].
  
 
* uva11057_exactsum: try all first number, use binary search to find the second number
 
* uva11057_exactsum: try all first number, use binary search to find the second number

รุ่นแก้ไขปัจจุบันเมื่อ 17:35, 15 กันยายน 2567

This page gives hints on recursive & divide-and-conquer tasks.

Get the templates here.

  • uva11057_exactsum: try all first number, use binary search to find the second number
  • uva11621_smallfactors: binary search over the set C23
  • uva11413_fill: binary search on the solution (the maximum capacity)
  • uva12965_angrybids: try the possible bid prices. (What are possible bid prices?)
  • uva10742_newrule: find range of possible values of the two coins.