Pagini recente » Cod sursa (job #2814706) | Cod sursa (job #2944180) | Cod sursa (job #2814368) | Cod sursa (job #2704358) | Cod sursa (job #2814703)
#include <bits/stdc++.h>
using namespace std;
const int MAX_N = 10000007;
deque <unsigned int> bucket[2][256];
unsigned int i,n,a,b,c;
unsigned int v[MAX_N];
void radix_sort(unsigned int v[MAX_N], const unsigned int &n){
unsigned int i;
for(i=1;i<=n;i++)
bucket[0][v[i]&((1<<8)-1)].push_back(v[i]);
for(i=0;i<256;i++)
while(!bucket[0][i].empty())
{
unsigned int &ref=bucket[0][i].front();
bucket[1][(ref&((1<<16)-1))>>8].push_back(ref);
bucket[0][i].pop_front();
}
for(i=0;i<256;i++)
while(!bucket[1][i].empty())
{
unsigned int &ref=bucket[1][i].front();
bucket[0][(ref&((1<<24)-1))>>16].push_back(ref);
bucket[1][i].pop_front();
}
for(i=0;i<256;i++)
while(!bucket[0][i].empty())
{
unsigned int &ref=bucket[0][i].front();
bucket[1][(ref&((1LL<<32)-1))>>24].push_back(ref);
bucket[0][i].pop_front();
}
unsigned int nr=0;
for(i=0;i<256;i++)
while(!bucket[1][i].empty())
{
v[++nr]=bucket[1][i].front();
bucket[1][i].pop_front();
}
}
int main(){
ifstream cin("radixsort.in");
ofstream cout("radixsort.out");
int N;
cin >> N;
int A, B, C;
cin >> A >> B >> C;
v[0] = B;
for(int i = 1; i < N; ++i){
v[i] = (A * 1LL * v[i - 1] + B) % C;
}
radix_sort(v, N);
for(int i = 0; i < N; i += 10){
cout << v[i] << " ";
}
cin.close();
cout.close();
return 0;
}