Advertisement
erfanul007

Untitled

Jan 11th, 2019
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3.  
  4. typedef long long int ll;
  5. typedef unsigned long long int ull;
  6. typedef vector<int> vi;
  7. typedef vector<vi> vvi;
  8. typedef pair<ll,ll> pll;
  9. typedef vector< pll > vpll;
  10. typedef set<int> sti;
  11.  
  12. #define pb push_back
  13. #define pob pop_back
  14. #define mp make_pair
  15. #define ff first
  16. #define ss second
  17. #define loop1(i,n) for(int i=1; i<=int(n); i++)
  18. #define loop(i,y) for(int i=0; i<int(y); i++)
  19. #define rloop(i,y) for(int i=int(y)-1; i>=0; i--)
  20. #define read() freopen("input.txt", "r", stdin)
  21. #define write() freopen("output.txt", "w", stdout)
  22. #define cspf(i) printf("Case %d: ", i)
  23. /// Constants
  24. #define eps 1e-9
  25. #define PI acos(-1.0) // 3.1415926535897932
  26.  
  27. int main()
  28. {
  29. int n,m,k,x,cnt=0,eq,mx=0;
  30. cin>>n>>m>>k;
  31. loop(i,n){
  32. cin>>x;
  33. if(x>m)
  34. cnt++;
  35. if(x==m)
  36. eq++;
  37. if(x>mx)
  38. mx=x;
  39. }
  40. if(k==0){
  41. if(mx==m)
  42. cout<<"YES"<<endl;
  43. else
  44. cout<<"NO"<<endl;
  45. return 0;
  46. }
  47. if(k==cnt && eq>0){
  48. cout<<"YES"<<endl;
  49. return 0;
  50. }
  51. if(k>cnt){
  52. cout<<"YES"<<endl;
  53. return 0;
  54. }
  55. cout<<"NO"<<endl;
  56. return 0;
  57. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement