fork(1) download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. #define int long long int
  5.  
  6. int32_t main() {
  7. ios_base::sync_with_stdio(false);
  8. cin.tie(nullptr);
  9.  
  10. int t;
  11. t = 1;
  12. // cin >> t;
  13. while (t--) {
  14. int n;
  15. cin >> n;
  16. int k;
  17. cin >> k;
  18. int A[n];
  19. for (int i = 0; i < n; i++) {
  20. cin >> A[i];
  21. }
  22. int B[k];
  23. for (int i = 0; i < k; i++) {
  24. cin >> B[i];
  25. }
  26. sort(A, A + n);
  27. int f=0;
  28. for(int i=0,j=0;i<n&&j<k;){
  29. if(A[i]>B[j]){
  30. if(i==0){
  31. cout << -1 << endl;
  32. }
  33. else{
  34. cout << A[i-1] << endl;
  35. i=0;
  36. j++;
  37. }
  38.  
  39. }
  40. else if(A[i]==B[j]){
  41. cout << A[i] << endl;
  42. i=0;
  43. j++;
  44. }
  45. else{
  46. i++;
  47. }
  48. }
  49. cout << f << endl;
  50. }
  51.  
  52. return 0;
  53. }
  54.  
Success #stdin #stdout 0.01s 5552KB
stdin
5 3
5 3 7 8 5
4 8 3
stdout
3
8
3
0