题解
2024-02-27 22:46:55
发布于:上海
27阅读
0回复
0点赞
因为它要保证不重复,所以可以使用set结构
AC代码如下:
#include<iostream>
#include<algorithm>
#include<set>
using namespace std;
set<int> st;
int main(){
int t;
cin>>t;
while(t--){
int n;
cin>>n;
int s[100] = {};
for(int i=0;i<n;i++){
cin>>s[i];
int cnt=count(s,s+i****[i]);
if(cnt>=2)s[i]*=-1;
st.insert(s[i]);
}
cout<<st.size()<<endl;
st.clear();
}return 0;
}
这里空空如也
有帮助,赞一个