摘要: 思路 这里的 i 才是主要的遍历指针, j 是用来剔除元素以满足题目要求的。 代码 #include<iostream> using namespace std; const int N = 1e5 + 10; int n, res; int a[N], s[N]; int main() { cin 阅读全文
posted @ 2023-12-24 06:58 vLiion 阅读(9) 评论(0) 推荐(0) 编辑