Pagini recente » Borderou de evaluare (job #1327863) | Cod sursa (job #2814394)
#include <bits/stdc++.h>
using namespace std;
const int MAX_N = 1e7 + 5;
const int INT_BITS = 32;
const int BUCKET_BITS = 8;
const int BUCKET_SIZE = (1 << BUCKET_BITS);
unsigned int v[MAX_N];
vector<queue<unsigned int>> buckets(BUCKET_SIZE);
void radixSort(unsigned int* v, const int& N){
for(int shiftBits = 0; shiftBits < INT_BITS; shiftBits += BUCKET_BITS){
for(int i = 0; i < N; ++i){
int bucketIdx = (v[i] >> shiftBits) & (BUCKET_SIZE - 1);
buckets[bucketIdx].push(v[i]);
}
int i = -1;
for(int bucketIdx = 0; bucketIdx < BUCKET_SIZE; ++bucketIdx){
while(!buckets[bucketIdx].empty()){
v[++i] = buckets[bucketIdx].front();
buckets[bucketIdx].pop();
}
}
}
}
int main(){
ifstream cin("radixsort.in");
ofstream cout("radixsort.out");
int N;
cin >> N;
unsigned 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;
}
radixSort(v, N);
for(int i = 0; i < N; i += 10){
cout << v[i] << " ";
}
cin.close();
cout.close();
return 0;
}