fork download
  1. #include <iostream>
  2. #include <math.h>
  3. using namespace std;
  4.  
  5. const int MAXN = 1000001; // Maximum possible value for elements in the array
  6.  
  7. int mark[MAXN]; // Frequency array to count occurrences of each element
  8. int a[MAXN];
  9.  
  10. int main(){
  11. int n;
  12. cin >> n; // Read the number of elements in the array
  13.  
  14. // Loop to read the input array and increment the count in the mark array
  15. for(int i = 1; i <= n; i++) {
  16. cin >> a[i];
  17. mark[a[i]]++; // Increment the count for the element in the mark array
  18. }
  19.  
  20. int ans = 0; // Variable to store the maximum frequency found
  21.  
  22. // Loop to find the maximum frequency
  23. for(int i = 1; i <= n; i++) {
  24. ans = max(ans, mark[a[i]]); // Update the maximum frequency
  25. }
  26.  
  27. // Loop to find the first element with the maximum frequency
  28. for(int i = 1; i <= n; i++) {
  29. if(mark[a[i]] == ans) { // Check if the current element has the max frequency
  30. cout << a[i]; // Output the element with the maximum frequency
  31. break; // Stop after finding the first element with the maximum frequency
  32. }
  33. }
  34.  
  35. return 0;
  36. }
  37.  
Success #stdin #stdout 0.01s 5668KB
stdin
6
1 2 1 2 4 2
stdout
2