From 2d7a391ee8b3c1f1d2afcdfa01c0038f45e1ea3f Mon Sep 17 00:00:00 2001 From: Yawn-Sean <1900015431@pku.edu.cn> Date: Thu, 9 Jan 2025 10:40:42 +0800 Subject: [PATCH] Add links to editorials --- README.md | 4 ++-- categories/DP.md | 1 + categories/constructive.md | 1 + categories/greedy.md | 1 + 4 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 29c5250115..a07ff4e23a 100644 --- a/README.md +++ b/README.md @@ -24,5 +24,5 @@ Here are the current statistics of submissions: [Link](https://yawn-sean.github. | Difficulty | Problems | Hints | Solution | | ---------- | -------- | ----- | -------- | -| 1700 | [CF789B](https://codeforces.com/problemset/problem/789/B) | Special cases need to be taken care of. | [Editorial](https://github.com/Yawn-Sean/Daily_CF_Problems/blob/main/daily_problems/2025/01/0108/solution/cf789b.md) | -| 2000 | [CF43D](https://codeforces.com/problemset/problem/43/D) | Use chessboard coloring to prove the result. | [Editorial](https://github.com/Yawn-Sean/Daily_CF_Problems/blob/main/daily_problems/2025/01/0108/solution/cf43d.md) | \ No newline at end of file +| 1700 | [CF360A](https://codeforces.com/problemset/problem/360/A) | Find the array that is most likely to satisfy all the conditions. | [Editorial](https://github.com/Yawn-Sean/Daily_CF_Problems/blob/main/daily_problems/2025/01/0109/solution/cf360a.md) | +| 2000 | [CF629C](https://codeforces.com/problemset/problem/629/C) | What really matters in the prefix and suffix? | [Editorial](https://github.com/Yawn-Sean/Daily_CF_Problems/blob/main/daily_problems/2025/01/0109/solution/cf629c.md) | \ No newline at end of file diff --git a/categories/DP.md b/categories/DP.md index 5ef29d9e0d..10f6ffa1bf 100644 --- a/categories/DP.md +++ b/categories/DP.md @@ -61,6 +61,7 @@ | 2000 | [CF119C](https://codeforces.com/problemset/problem/119/C) | Even $a_i,b_i$ is large, their difference is small, so you can always use DP. | [Editorial](https://github.com/Yawn-Sean/Daily_CF_Problems/blob/main/daily_problems/2024/11/1128/solution/cf119c.md) | | 2000 | [CF228C](https://codeforces.com/problemset/problem/228/C) | When detecting a $k$ -order fractal, you can use the result of the $k-1$ -order fractal. | [Editorial](https://github.com/Yawn-Sean/Daily_CF_Problems/blob/main/daily_problems/2024/12/1205/solution/cf228c.md) | | 2000 | [CF82D](https://codeforces.com/problemset/problem/82/D) | The pattern of the queue of customers is special. | [Editorial](https://github.com/Yawn-Sean/Daily_CF_Problems/blob/main/daily_problems/2024/12/1219/solution/cf82d.md) | +| 2000 | [CF629C](https://codeforces.com/problemset/problem/629/C) | What really matters in the prefix and suffix? | [Editorial](https://github.com/Yawn-Sean/Daily_CF_Problems/blob/main/daily_problems/2025/01/0109/solution/cf629c.md) | | 2100 | [CF1152D](https://codeforces.com/problemset/problem/1152/D) | Try solving the problem in a smaller tree. What information should be necessary for your DP function? | [Editorial](https://github.com/Yawn-Sean/Daily_CF_Problems/blob/main/daily_problems/2024/02/0228/solution/cf1152d.md) | | 2100 | [CF1163D](https://codeforces.com/problemset/problem/1163/D) | DP-problem. Think about the status. You don't need the time complexity to be that low. | [Editorial](https://github.com/Yawn-Sean/Daily_CF_Problems/blob/main/daily_problems/2024/03/0328/solution/cf1163d.md) | | 2100 | [CF1201D](https://codeforces.com/problemset/problem/1201/D) | Write a basic DP first. How can you optimize it? Is there any unnecessary status? | [Editorial](https://github.com/Yawn-Sean/Daily_CF_Problems/blob/main/daily_problems/2024/04/0413/solution/cf1201d.md) | diff --git a/categories/constructive.md b/categories/constructive.md index d283170a72..3b0233079f 100644 --- a/categories/constructive.md +++ b/categories/constructive.md @@ -33,6 +33,7 @@ | 1700 | [CF1219C](https://codeforces.com/problemset/problem/1219/C) | It's all about case work. | [Editorial](https://github.com/Yawn-Sean/Daily_CF_Problems/blob/main/daily_problems/2024/12/1211/solution/cf1219c.md) | | 1700 | [CF479D](https://codeforces.com/problemset/problem/479/D) | You don't need to make a lot of marks. What are the different cases? | [Editorial](https://github.com/Yawn-Sean/Daily_CF_Problems/blob/main/daily_problems/2024/12/1218/solution/cf479d.md) | | 1700 | [CF1042C](https://codeforces.com/problemset/problem/1042/C) | There are only three types of numbers. | [Editorial](https://github.com/Yawn-Sean/Daily_CF_Problems/blob/main/daily_problems/2024/12/1226/solution/cf1042c.md) | +| 1700 | [CF360A](https://codeforces.com/problemset/problem/360/A) | Find the array that is most likely to satisfy all the conditions. | [Editorial](https://github.com/Yawn-Sean/Daily_CF_Problems/blob/main/daily_problems/2025/01/0109/solution/cf360a.md) | | 1800 | [CF665D](https://codeforces.com/problemset/problem/665/D) | If the subset contains more than 3 numbers, something strange happens. | [Editorial](https://github.com/Yawn-Sean/Daily_CF_Problems/blob/main/daily_problems/2024/03/0316/solution/cf665d.md) | | 1800 | [CF263D](https://codeforces.com/problemset/problem/263/D) | What are the typical ways of finding cycles in a graph? Which one is appropriate? Prove it! | [Editorial](https://github.com/Yawn-Sean/Daily_CF_Problems/blob/main/daily_problems/2024/03/0316/solution/cf263d.md) | | 1800 | [CF1016D](https://codeforces.com/problemset/problem/1016/D) | Brain teaser. Two ways of thinking: What is the necessary condition? / How can you try to satisfy more conditions when you already have a partly-right result? | [Editorial](https://github.com/Yawn-Sean/Daily_CF_Problems/blob/main/daily_problems/2024/04/0401/solution/cf1016d.md) | diff --git a/categories/greedy.md b/categories/greedy.md index 31ec6a735b..71922c59ae 100644 --- a/categories/greedy.md +++ b/categories/greedy.md @@ -62,6 +62,7 @@ | 1700 | [CF1056C](https://codeforces.com/problemset/problem/1056/C) | Make use of your advantage. | [Editorial](https://github.com/Yawn-Sean/Daily_CF_Problems/blob/main/daily_problems/2024/12/1219/solution/cf1056c.md) | | 1700 | [CF1042C](https://codeforces.com/problemset/problem/1042/C) | There are only three types of numbers. | [Editorial](https://github.com/Yawn-Sean/Daily_CF_Problems/blob/main/daily_problems/2024/12/1226/solution/cf1042c.md) | | 1700 | [CF769C](https://codeforces.com/problemset/problem/769/C) | For the first few steps, you can use greedy approach, but you should guarantee that you can come back. | [Editorial](https://github.com/Yawn-Sean/Daily_CF_Problems/blob/main/daily_problems/2025/01/0101/solution/cf769c.md) | +| 1700 | [CF360A](https://codeforces.com/problemset/problem/360/A) | Find the array that is most likely to satisfy all the conditions. | [Editorial](https://github.com/Yawn-Sean/Daily_CF_Problems/blob/main/daily_problems/2025/01/0109/solution/cf360a.md) | | 1800 | [CF1083A](https://codeforces.com/problemset/problem/1083/A) | Classic way of thinking a path on the tree: fix the important point. Then consider your DP |[Editorial](https://github.com/Yawn-Sean/Daily_CF_Problems/blob/main/daily_problems/2024/03/0305/solution/cf1083a.md) | | 1800 | [CF1148D](https://codeforces.com/problemset/problem/1148/D) | If you want to satisfy the first condition, what should you want in a chosen pair? Group the pairs by this and try a greedy approach to construct the final answer | [Editorial](https://github.com/Yawn-Sean/Daily_CF_Problems/blob/main/daily_problems/2024/04/0402/solution/cf1148d.md) | | 1800 | [CF747D](https://codeforces.com/problemset/problem/747/D) | Use winter tires: (i) on cold days; (ii) to reduce the number of changing. | [Editorial](https://github.com/Yawn-Sean/Daily_CF_Problems/blob/main/daily_problems/2024/04/0430/solution/cf747d.md) |