fork download
  1. #include <iostream>
  2. using namespace std;
  3. int n,tmp,cl1,cl2,cl3,cl4,cl5,cl6,cl7,cl8,cl9;
  4. int main(){
  5. ios_base::sync_with_stdio(false);
  6. cin.tie(NULL);
  7. cin >> n;
  8. for(auto i = 0; i < n; ++i){
  9. cin >> tmp;
  10. (tmp==1) ? ++cl1 : (tmp==2) ? ++cl2 : (tmp==3) ? ++cl3 : (tmp==4) ? ++cl4 : (tmp==5) ? ++cl5 : (tmp==6) ? ++cl6 : (tmp==7) ? ++cl7 : (tmp==8) ? ++cl8 : ++cl9;
  11. }
  12. cout << n-max(cl1,max(cl2,max(cl3,max(cl4,max(cl5,max(cl6,max(cl7,max(cl8,cl9))))))));
  13. }
Success #stdin #stdout 0s 15232KB
stdin
4
3 1 2 1
stdout
2