Advertisement
adibahbab4108

C211009-ADIB

Nov 3rd, 2021
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.65 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5.     int N;
  6.     int i;
  7.     cin>>N;
  8.     int array[N];
  9.     for(i=0; i<N; i++)
  10.     {
  11.         cin>>array[i];
  12.     }
  13.     sort(array, array + N);
  14.  
  15.     int testN,test;
  16.     cin>>testN;
  17.     int found=0,position=0;
  18.     for(i=0; i<testN; i++)
  19.     {
  20.         cin>>test;
  21.         for(int j=0; j<N; j++)
  22.         {
  23.             if(array[j]==test)
  24.             {
  25.                 found++;
  26.                 position++;
  27.             }
  28.         }
  29.         if(found!=0)
  30.         {
  31.             cout<<"YES "<<position+1<<endl;
  32.         }
  33.         else
  34.             cout<<"NO "<<position+1<<endl;
  35.     }
  36.  
  37.  
  38. }
  39.  
  40.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement