NOI题目分类总结

不断更新ing......

1、基本语句

保留输出小数点:https://blog.csdn.net/wuzhenzi5193/article/details/80295898

NOI:1968 特殊日历计算(字符串处理):https://blog.csdn.net/wuzhenzi5193/article/details/80297617

NOI:1712 数值转换:https://blog.csdn.net/wuzhenzi5193/article/details/80296397

NOI:1745 字符串判等(字符串处理):https://blog.csdn.net/wuzhenzi5193/article/details/80498272

NOI:1946 单词替换(字符串处理):https://blog.csdn.net/wuzhenzi5193/article/details/80498676

NOI:6247 过滤多余的空格https://blog.csdn.net/wuzhenzi5193/article/details/80498761

NOI:7549 单词的长度(字符串处理)https://blog.csdn.net/wuzhenzi5193/article/details/80498876

2、简单算法

NOI:1930 素数回文数的个数(判断素数、回文)https://blog.csdn.net/wuzhenzi5193/article/details/80503210

NOI:6731 啤酒厂选址(枚举):https://blog.csdn.net/wuzhenzi5193/article/details/80303068

NOI:逆波兰表达式(递归):https://blog.csdn.net/wuzhenzi5193/article/details/80298876

NOI:1725 不吉利日期(枚举):https://blog.csdn.net/wuzhenzi5193/article/details/80297617

NOI:1978 生理周期(枚举):https://blog.csdn.net/wuzhenzi5193/article/details/80315363

NOI:7832 最接近的分数(枚举):https://blog.csdn.net/wuzhenzi5193/article/details/80315682

NOI:3089 爬楼梯(递归):https://blog.csdn.net/wuzhenzi5193/article/details/80315860

NOI:9273 PKU2506Tiling(递推):https://blog.csdn.net/wuzhenzi5193/article/details/80327958

NOI:8758 2的幂次方表示(递归):https://blog.csdn.net/wuzhenzi5193/article/details/80326272

NOI:7834 分成互质组(遍历):https://blog.csdn.net/wuzhenzi5193/article/details/80333495

NOI:6626 取石子游戏:https://blog.csdn.net/wuzhenzi5193/article/details/80334368

NOI:1748 约瑟夫问题(遍历):https://blog.csdn.net/wuzhenzi5193/article/details/80335201

NOI:6263 布尔表达式https://blog.csdn.net/wuzhenzi5193/article/details/80358497

NOI:2729 Blash 数集https://blog.csdn.net/wuzhenzi5193/article/details/80378868

NOI:8186 判断元素是否存在https://blog.csdn.net/wuzhenzi5193/article/details/80298737

NOI:2407 寻找平面上的极大点https://blog.csdn.net/wuzhenzi5193/article/details/80412646

NOI:3528 最小新整数https://blog.csdn.net/wuzhenzi5193/article/details/80413506

3、STL

NOI:6377 生日相同2.0(set、map):https://blog.csdn.net/wuzhenzi5193/article/details/80304577

NOI:1806 词典(map):https://blog.csdn.net/wuzhenzi5193/article/details/80379158

NOI:3344 冷血格斗场(sort、map):https://blog.csdn.net/wuzhenzi5193/article/details/80379374

NOI:3343 热血格斗场(sort、map):https://blog.csdn.net/wuzhenzi5193/article/details/80384108

NOI:2469 电池的寿命(sort):https://blog.csdn.net/wuzhenzi5193/article/details/80412375

4、基本数据结构
5、分治
6、搜索

NOI:7940 最接近的元素(二分查找):https://blog.csdn.net/wuzhenzi5193/article/details/80502639

NOI:2806 二分法求函数的零点(二分查找):https://blog.csdn.net/wuzhenzi5193/article/details/80502843

7、动态规划

NOI:666 放苹果:https://blog.csdn.net/wuzhenzi5193/article/details/80327677

NOI:8787 数的划分https://blog.csdn.net/wuzhenzi5193/article/details/80470978

NOI:1808 公共子序列https://blog.csdn.net/wuzhenzi5193/article/details/80334923

NOI:3532 最长上升子序列和https://blog.csdn.net/wuzhenzi5193/article/details/80471219

NOI:1996 登山https://blog.csdn.net/wuzhenzi5193/article/details/80470065

NOI:8758 装箱问题https://blog.csdn.net/wuzhenzi5193/article/details/80470723

NOI:2728 摘花生https://blog.csdn.net/wuzhenzi5193/article/details/80471287

NOI:7625 三角形最佳路径https://blog.csdn.net/wuzhenzi5193/article/details/80471456

8、贪心

NOI:7062 区间合并:https://blog.csdn.net/wuzhenzi5193/article/details/80328517

NOI:1797 金银岛https://blog.csdn.net/wuzhenzi5193/article/details/80412213

NOI:8469 特殊的密码锁https://blog.csdn.net/wuzhenzi5193/article/details/80413387

9、图

NOI:2971 抓住那头牛(BFS):https://blog.csdn.net/wuzhenzi5193/article/details/80331066

NOI:1972 迷宫(DFS):https://blog.csdn.net/wuzhenzi5193/article/details/80330770

猜你喜欢

转载自blog.csdn.net/wuzhenzi5193/article/details/80488270