-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREPLESX.cpp
61 lines (54 loc) · 1.01 KB
/
REPLESX.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#include<bits/stdc++.h>
using namespace std;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int T;
cin>>T;
while(T--)
{
int i,N,X,p,k;
cin>>N>>X>>p>>k;
int arr[N];
i=1;
while(i<=N)
{
cin>>arr[i];
i+=1;
}
int flag=0,count=-1;
i=1;
sort(arr,arr+N);
// cout<<arr[N];
while(i<=N)
{
sort(arr,arr+N);
count+=1;
if(arr[p]==X)
{
break;
}
if(i==N && arr[p]!=X)
{
flag = 1;
break;
}
else
{
arr[k]=0;
}
count+=1;
i+=1;
}
if(flag == 1)
{
cout<<-1<<"\n";
}
else
{
cout<<count<<"\n";
}
}
return 0;
}