数组操作 + 循环语句
2023-08-09 22:00:48
发布于:上海
3阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
int n;
cin>>n;
int tmp=1;
for(int j=1;j<=n;j++){
tmp=1;
int k;
cin>>k;
long long list[10001]={0};
for(int i=0;i<k;i++){
cin>>list[i];
}
sort(list,list+k);
/*
for(int i=0;i<k;i++) cout<<list[i]<<" ";
cout<<endl;*/
for(int i=1;i<k and tmp;i++){
if(list[i]<=list[i-1]){cout<<"NO"<<endl;tmp=0;}
}
if(tmp==1) cout<<"YES"<<endl;
}
return 0;
}
这里空空如也
有帮助,赞一个