指导老师:毛明松
编撰:衷铭川(大数据 231 班,程设协会负责人)
江西财经大学信息管理与数学学院编程会、计算机与人工智能学院程序设计竞赛协会


# 读题训练的意义

在蓝桥杯竞赛中,“读题” 具有极其重要的意义,它不仅关乎选手能否准确理解题目要求,还直接影响解题效率和最终成绩。
题目通常包含复杂的描述和多个条件,选手应该快速抓住题目的核心信息,避免因误解题意而导致错误的解题思路或代码实现。比赛中,许多错误往往源于对题目的理解偏差或遗漏关键条件。

# 题目

接下来,将提供一系列题目链接及其推荐解法。请在仔细阅读题目后,​分析并总结出你认为的最优解题思路,然后将其与推荐写法进行对比,​指出两者在方法、效率或实现细节上的差异。通过这种对比,你可以更深入地理解不同解法的优劣,并提升自己的解题能力。

# 题目链接

指导老师与组长可自行建立在线表格督促本组同学进行学习。

序号题目链接
1https://www.luogu.com.cn/problem/P3817
2https://www.luogu.com.cn/problem/P5019
3https://www.luogu.com.cn/problem/P1478
4https://www.luogu.com.cn/problem/P1182
5https://www.luogu.com.cn/problem/P1208
6https://www.luogu.com.cn/problem/P1629
7https://www.luogu.com.cn/problem/P2440
8https://www.luogu.com.cn/problem/P4995
9https://www.luogu.com.cn/problem/P3353
10https://www.luogu.com.cn/problem/P5463
11https://www.luogu.com.cn/problem/P1106
12https://www.luogu.com.cn/problem/P1803
13https://www.luogu.com.cn/problem/P1223
14https://www.luogu.com.cn/problem/P3406
15https://www.luogu.com.cn/problem/P2085
16https://www.luogu.com.cn/problem/P1734
17https://www.luogu.com.cn/problem/P1536
18https://www.luogu.com.cn/problem/P2404
19https://www.luogu.com.cn/problem/P1024
20https://www.luogu.com.cn/problem/P3655
21https://www.luogu.com.cn/problem/P2814
22https://www.luogu.com.cn/problem/P8396
23https://www.luogu.com.cn/problem/P1114
24https://www.luogu.com.cn/problem/P1135
25https://www.luogu.com.cn/problem/P1443
26https://www.luogu.com.cn/problem/P1678
27https://www.luogu.com.cn/problem/P1873
28https://www.luogu.com.cn/problem/P1094
29https://www.luogu.com.cn/problem/P1090
30https://www.luogu.com.cn/problem/P1433
31https://www.luogu.com.cn/problem/P4447
32https://www.luogu.com.cn/problem/P3853
33https://www.luogu.com.cn/problem/P1164
34https://www.luogu.com.cn/problem/P1455
35https://www.luogu.com.cn/problem/P3743
36https://www.luogu.com.cn/problem/P1102

# 推荐写法

序号题目链接推荐写法
1https://www.luogu.com.cn/problem/P3817贪心
2https://www.luogu.com.cn/problem/P5019贪心
3https://www.luogu.com.cn/problem/P1478贪心
4https://www.luogu.com.cn/problem/P1182二分查找与二分答案
5https://www.luogu.com.cn/problem/P1208贪心
6https://www.luogu.com.cn/problem/P1629优先队列
7https://www.luogu.com.cn/problem/P2440二分查找与二分答案
8https://www.luogu.com.cn/problem/P4995贪心
9https://www.luogu.com.cn/problem/P3353前缀和
10https://www.luogu.com.cn/problem/P5463树状数组 + 前缀和
11https://www.luogu.com.cn/problem/P1106贪心
12https://www.luogu.com.cn/problem/P1803贪心
13https://www.luogu.com.cn/problem/P1223贪心
14https://www.luogu.com.cn/problem/P3406前缀和
15https://www.luogu.com.cn/problem/P2085优先队列
16https://www.luogu.com.cn/problem/P1734动态规划
17https://www.luogu.com.cn/problem/P1536并查集
18https://www.luogu.com.cn/problem/P2404搜索
19https://www.luogu.com.cn/problem/P1024二分查找与二分答案
20https://www.luogu.com.cn/problem/P3655差分
21https://www.luogu.com.cn/problem/P2814并查集
22https://www.luogu.com.cn/problem/P8396并查集
23https://www.luogu.com.cn/problem/P1114前缀和
24https://www.luogu.com.cn/problem/P1135搜索
25https://www.luogu.com.cn/problem/P1443搜索
26https://www.luogu.com.cn/problem/P1678二分查找与二分答案
27https://www.luogu.com.cn/problem/P1873二分查找与二分答案
28https://www.luogu.com.cn/problem/P1094贪心
29https://www.luogu.com.cn/problem/P1090贪心
30https://www.luogu.com.cn/problem/P1433搜索
31https://www.luogu.com.cn/problem/P4447贪心
32https://www.luogu.com.cn/problem/P3853二分查找与二分答案
33https://www.luogu.com.cn/problem/P1164动态规划
34https://www.luogu.com.cn/problem/P1455并查集 + 动态规划
35https://www.luogu.com.cn/problem/P3743二分查找与二分答案
36https://www.luogu.com.cn/problem/P1102二分查找与二分答案