change to is_sorted function
This commit is contained in:
parent
1d75ddba8d
commit
67b6a1406c
@ -14,16 +14,8 @@ void solve()
|
|||||||
cin>>x;
|
cin>>x;
|
||||||
v.push_back(x);
|
v.push_back(x);
|
||||||
}
|
}
|
||||||
bool unsorted=0;
|
|
||||||
for(int i=1; i<n; ++i)
|
if(!is_sorted(v.begin(),v.end()))
|
||||||
{
|
|
||||||
if(v[i]<v[i-1])
|
|
||||||
{
|
|
||||||
unsorted=1;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if(unsorted)
|
|
||||||
cout<<0<<endl;
|
cout<<0<<endl;
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user