二分题单

题单介绍

【红题篇】 - [一元三次方程求解](https://www.luogu.com.cn/problem/P1024) 尝试不要用枚举求解,试试二分。 【橙题篇】 - [进击的奶牛](https://www.luogu.com.cn/problem/P1824) 经典套路:二分答案+贪心判断 - [小车问题](https://www.luogu.com.cn/problem/P1258) 一道不错的题,由余力的同学可以尝试数学解。 【黄题篇】 - [数列分段 II](https://www.luogu.com.cn/problem/P1182) 经典二分例题,值得一做(ps.注意边界) - [$\text{KC}$喝咖啡](https://www.luogu.com.cn/problem/P1570) 实数域上的二分练手题。注意精度。 - [切绳子](https://www.luogu.com.cn/problem/P1577) 同上题,一样是二分答案+贪心判断。 - [砍树](https://www.luogu.com.cn/problem/P1873) 二分答案+贪心判断 - [木材加工](https://www.luogu.com.cn/problem/P2440) 千万注意不要RE,一样是二分答案+贪心判断。 - [[USACO06DEC]River Hopscotch S](https://www.luogu.com.cn/problem/P2855) 二分答案+贪心判断 - [[Code+#1]木材](https://www.luogu.com.cn/problem/P4058) 二分答案+贪心判断 【绿题篇】 - [借教室](https://www.luogu.com.cn/problem/P1083) 二分答案+贪心判断 - [包裹快递](https://www.luogu.com.cn/problem/P1542) 二分答案+贪心判断 - [[TJOI2007]路标设置](https://www.luogu.com.cn/problem/P3853) 也是一道二分答案+贪心判断,边界值得考虑。 - [[AHOI2018初中组]分组](https://www.luogu.com.cn/problem/P4447)二分查找 【蓝题篇】 - [聪明的质监员](https://www.luogu.com.cn/problem/P1314) 需要一点数学思维 - [山](https://www.luogu.com.cn/problem/P1663) 同上。二分答案+贪心判断,实数域的练习题! - [[USACO10FEB]Chocolate Eating S](https://www.luogu.com.cn/problem/P2985) 二分答案+贪心判断 - [Chtholly Nota Seniorious](https://www.luogu.com.cn/problem/P3933) - [跳房子](https://www.luogu.com.cn/problem/P3957) 二分+dp - [【模板】三分法](https://www.luogu.com.cn/problem/P3382) 模板题,可以看看题解学习一下。

题目列表

  • [NOIP2001 提高组] 一元三次方程求解
  • 进击的奶牛
  • 小车问题
  • 数列分段 Section II
  • KC 喝咖啡
  • 切绳子
  • [COCI 2011/2012 #5] EKO / 砍树
  • 木材加工
  • [USACO06DEC] River Hopscotch S
  • [Code+#1] 木材
  • [NOIP2012 提高组] 借教室
  • 包裹快递
  • [TJOI2007] 路标设置
  • [AHOI2018初中组] 分组
  • [NOIP2011 提高组] 聪明的质监员
  • [USACO10FEB] Chocolate Eating S
  • Chtholly Nota Seniorious
  • [NOIP2017 普及组] 跳房子
  • 三分