总结分类自己做过的题目,不断更新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:2178 判决素数的个数(素数):https://blog.csdn.net/wuzhenzi5193/article/details/80507229
NOI:1053 循环数(大精度乘法、首尾相连判子串):https://blog.csdn.net/wuzhenzi5193/article/details/80506643
NOI:7606 除以13(大整数除法):https://blog.csdn.net/wuzhenzi5193/article/details/80507933
NOI:8241 正整数的任意进制转换(高精度计算):https://blog.csdn.net/wuzhenzi5193/article/details/80508580
NOI:1813 熄灯问题(枚举):https://blog.csdn.net/wuzhenzi5193/article/details/80532209
NOI:2722 和数(枚举):https://blog.csdn.net/wuzhenzi5193/article/details/80554944
NOI:7216 Minecraft (枚举):https://blog.csdn.net/wuzhenzi5193/article/details/80555019
NOI:7213 垃圾炸弹(枚举):https://blog.csdn.net/wuzhenzi5193/article/details/80555353
NOI:7261 硬币面值组合(枚举):https://blog.csdn.net/wuzhenzi5193/article/details/80555481
NOI:6731 啤酒厂选址(枚举):https://blog.csdn.net/wuzhenzi5193/article/details/80303068
NOI:1696 逆波兰表达式(递归):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、分治
NOI:7891 一元三次方程求解:https://blog.csdn.net/wuzhenzi5193/article/details/80587160
NOI:7909 统计数字(map:https://blog.csdn.net/wuzhenzi5193/article/details/80587474
6、搜索
NOI:7940 最接近的元素(二分查找):https://blog.csdn.net/wuzhenzi5193/article/details/80502639
NOI:2806 二分法求函数的零点(二分查找):https://blog.csdn.net/wuzhenzi5193/article/details/80502843
NOI:1817 城堡问题(DFS):https://blog.csdn.net/wuzhenzi5193/article/details/80587619
NOI:6626 取石子游戏:https://blog.csdn.net/wuzhenzi5193/article/details/80334368
NOI:2971 抓住那头牛(BFS):https://blog.csdn.net/wuzhenzi5193/article/details/80331066
NOI:1972 迷宫(DFS):https://blog.csdn.net/wuzhenzi5193/article/details/80330770
NOI:7084 迷宫问题(BFS最短路):https://blog.csdn.net/wuzhenzi5193/article/details/80587920
7、动态规划
NOI:2988 计算字符串距离(递推):https://blog.csdn.net/wuzhenzi5193/article/details/80616930
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
NOI:8783 单词接龙(DFS):https://blog.csdn.net/wuzhenzi5193/article/details/80588275
NOI:1526 宗教信仰(并查集):https://blog.csdn.net/wuzhenzi5193/article/details/81189031
NOI:523 丛林中的路(最小生成树):https://blog.csdn.net/wuzhenzi5193/article/details/81190134