From 14deae4d42aec5fe3fde8a397ee1a83c46dc0fa9 Mon Sep 17 00:00:00 2001 From: Segcolt Date: Tue, 17 Mar 2026 15:33:23 -0300 Subject: [PATCH] Add another problem in problemlist --- problemlist.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/problemlist.md b/problemlist.md index 3599701..06b29ce 100644 --- a/problemlist.md +++ b/problemlist.md @@ -124,3 +124,10 @@ A little collection of interesting problems that I randomly decided to do. - [F. Non-academic Problem](https://codeforces.com/problemset/problem/1986/F) Bridge to compress the graph into a tree. + +## Divide and Conquer + +- [F. BattleCows](https://codeforces.com/problemset/problem/2185/F) + + Interesting problem to think about, good introduction to divide and conquer in my opinion and + can be used as a bridge to segment trees.