后天习得 发表于 2025-3-25 06:12:58

Efficiency,The efficiency of algorithms plays a central role in competitive programming. In this chapter, we learn tools that make it easier to design efficient algorithms.

Induction 发表于 2025-3-25 09:19:35

http://reply.papertrans.cn/40/3914/391361/391361_22.png

中子 发表于 2025-3-25 13:13:44

http://reply.papertrans.cn/40/3914/391361/391361_23.png

假装是你 发表于 2025-3-25 16:33:58

Dynamic Programming,Dynamic programming  is an algorithm design technique that can be used to find optimal solutions to problems and to count the number of solutions. This chapter is an introduction to dynamic programming, and the technique will be used many times later in the book when designing algorithms.

四海为家的人 发表于 2025-3-25 23:58:58

http://reply.papertrans.cn/40/3914/391361/391361_25.png

Rheumatologist 发表于 2025-3-26 00:23:59

http://reply.papertrans.cn/40/3914/391361/391361_26.png

解开 发表于 2025-3-26 08:18:31

Range Queries,In this chapter, we discuss data structures for efficiently processing range queries on arrays. Typical queries are range sum queries (calculating the sum of values) and range minimum queries (finding the minimum value).

凹室 发表于 2025-3-26 12:33:37

Tree Algorithms,The special properties of trees allow us to create algorithms that are specialized for trees and work more efficiently than general graph algorithms. This chapter presents a selection of such algorithms.

OPINE 发表于 2025-3-26 15:27:49

Mathematics,This chapter deals with mathematical topics that are recurrent in competitive programming. We will both discuss theoretical results and learn how to use them in practice in algorithms.

革新 发表于 2025-3-26 17:00:39

Advanced Graph Algorithms,This chapter discusses a selection of advanced graph algorithms.
页: 1 2 [3] 4 5 6
查看完整版本: Titlebook: ;