陌研
陌研
全部文章
题解
归档
标签
去牛客网
登录
/
注册
陌研的博客
全部文章
/ 题解
(共1篇)
题解 | Different Integers 莫队
【Different Integers题解】 模板题,扔一个比较简洁的代码。 将指针起始位置定义在L=0,R=n+1,然后随着查询操作(l,r)进行移动,使得L=l,R=r。 需要注意的是查询的边界问题,l和r也包含在被查询的区间中。 #include <bits/stdc++.h> u...
莫队
2021-10-04
0
567