1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
#include <bits/stdc++.h>
using namespace std;

#define pb push_back
#define fi first
#define sn second

typedef long long ll;
typedef vector<int> VI;
typedef vector<char> VC;
typedef pair<int, int> PI;

VI tarray;
int tsize = 2;

void init(int n) {
  while (tsize < 2 * n) {
    tsize *= 2;
  }

  tarray.resize(tsize);
  fill(tarray.begin(), tarray.end(), 0);
}

void add(int x, int p, int q, int k, int l, int value) {
  //   cout << "ADD " << value << " | " << p << " " << q << " | " << k << " " <<
  //   l
  //        << "(" << (k + l) / 2 << ") | "
  //        << " "
  //        << "(" << x << ")" << endl;
  if (p == k && q == l) {
    tarray[x] += value;
    return;
  }

  int m = (k + l) / 2;
  if (p <= m) {
    add(x * 2 + 1, p, min(q, m), k, m, value);
  }
  if (q > m) {
    add(x * 2 + 2, max(m + 1, p), q, m + 1, l, value);
  }
}

int query(int x) {
  if (x == 0) return tarray[x];
  return tarray[x] + query((x - 1) / 2);
}

int main() {
  //   int n = 7;
  //   init(n);

  //   int s = 8;

  //   add(0, 0, 3, 0, 7, 1);
  //   add(0, 1, 2, 0, 7, 2);
  //   add(0, 4, 6, 0, 7, 3);
  //   add(0, 5, 5, 0, 7, 4);
  //   add(0, 3, 4, 0, 7, 5);
  //   add(0, 3, 4, 0, 7, 1);

  //   for (int i = 0; i < n; i++) {
  //     cout << query(i + s -1 ) << endl;
  //   }

  //   for (int i = 0; i < tsize; i++) {
  //     cout << tarray[i] << " ";
  //   }
  //   cout << endl;
  int n;
  cin >> n;

  init(n);
  int size = tsize / 2;

  VI A(n);

  for (int i = 0; i < n; i++) {
    cin >> A[i];
  }

  sort(A.begin(), A.end());

  VI C;

  int last = A[0];
  int cnt = 1;
  for (int i = 1; i < n; i++) {
    if (A[i] == last) {
      cnt += 1;
    } else {
      C.push_back(cnt);
      cnt = 1;
      last = A[i];
    }
  }
  C.push_back(cnt);

  sort(C.rbegin(), C.rend());

  for (int c : C) {
    int k = 1;
    while (k <= c) {
      int p = c / k;
      int q = c / p;

      add(0, k - 1, q - 1, 0, size - 1, p);
      k = q + 1;
    }
  }

  for (int i = 0; i < n; i++) cout << query(i + size - 1) * (i + 1) << " ";
  cout << endl;

  //   VI res(n + 1, 0);

  //   for (int t = 0; t < T; t++) {
  //     int res = 0;

  //     cout << "Case #" << (t + 1) << ": " << res << endl;
  //   }

  return 0;
}