摘要: 题目大意: 求l~r之间最大值减最小值。思路:RMQ模板的RMQ。 求一遍最大值,再求一遍最小值,输出两者的差即可。代码:#include #include using namespace std;int a[100001][51],b[100001][51],x,y... 阅读全文
posted @ 2018-05-23 16:57 全OI最菜 阅读(79) 评论(0) 推荐(0) 编辑