所以修改的方法就是先用binary_serach在当前的v中看有没有,有的话用lower_bound删掉在v中的元素,然后存入ans就ok了。 AC代码: 1 #include <bits/stdc++.h> 2 using namespace std; 3 4 vector<int> v; 5 vector<int> ans; 6 7 int main() 8 { 9 ios::sync_with_stdio(false); 10 int t; ...