Cod sursa(job #2900203)

Utilizator ViAlexVisan Alexandru ViAlex Data 10 mai 2022 15:14:19
Problema Radix Sort Scor 30
Compilator cpp-64 Status done
Runda Arhiva educationala Marime 3.58 kb
#include<iostream>
#include<fstream>

using namespace std;


class InParser {
private:
    FILE *fin;
    char *buff;
    int sp;

    char read_ch() {
        ++sp;
        if (sp == 4096) {
            sp = 0;
            fread(buff, 1, 4096, fin);
        }
        return buff[sp];
    }

public:
    InParser(const char *nume) {
        fin = fopen(nume, "r");
        buff = new char[4096]();
        sp = 4095;
    }

    InParser &operator>>(int &n) {
        char c;
        while (!isdigit(c = read_ch()) && c != '-');
        int sgn = 1;
        if (c == '-') {
            n = 0;
            sgn = -1;
        } else {
            n = c - '0';
        }
        while (isdigit(c = read_ch())) {
            n = 10 * n + c - '0';
        }
        n *= sgn;
        return *this;
    }

    InParser &operator>>(long long &n) {
        char c;
        n = 0;
        while (!isdigit(c = read_ch()) && c != '-');
        long long sgn = 1;
        if (c == '-') {
            n = 0;
            sgn = -1;
        } else {
            n = c - '0';
        }
        while (isdigit(c = read_ch())) {
            n = 10 * n + c - '0';
        }
        n *= sgn;
        return *this;
    }
};

class OutParser {
private:
    FILE *fout;
    char *buff;
    int sp;

    void write_ch(char ch) {
        if (sp == 50000) {
            fwrite(buff, 1, 50000, fout);
            sp = 0;
            buff[sp++] = ch;
        } else {
            buff[sp++] = ch;
        }
    }


public:
    OutParser(const char *name) {
        fout = fopen(name, "w");
        buff = new char[50000]();
        sp = 0;
    }

    ~OutParser() {
        fwrite(buff, 1, sp, fout);
        fclose(fout);
    }

    OutParser &operator<<(int vu32) {
        if (vu32 <= 9) {
            write_ch(vu32 + '0');
        } else {
            (*this) << (vu32 / 10);
            write_ch(vu32 % 10 + '0');
        }
        return *this;
    }

    OutParser &operator<<(long long vu64) {
        if (vu64 <= 9) {
            write_ch(vu64 + '0');
        } else {
            (*this) << (vu64 / 10);
            write_ch(vu64 % 10 + '0');
        }
        return *this;
    }

    OutParser &operator<<(char ch) {
        write_ch(ch);
        return *this;
    }

    OutParser &operator<<(const char *ch) {
        while (*ch) {
            write_ch(*ch);
            ++ch;
        }
        return *this;
    }
};

InParser in("radixsort.in");
OutParser out("radixsort.out");


const int radix_size = 8;
const int mask = 0xff;
const int byte_count = (1 << radix_size) + 10;

const int num_bytes = sizeof(int);
const int mx = 10000100;


int n, a, b, c;
int v[mx], temp[mx];

int get_byte(int number, int byte) {
    return (number >> (byte * 8)) & mask;
}

void counting_sort(int *x, int *y, int byte) {
    int freq[byte_count];
    int index[byte_count];

    for (int i = 0; i < byte_count; i++) {
        freq[i] = 0;
        index[i] = 0;
    }

    for (int i = 0; i < n; i++) {
        freq[get_byte(x[i], byte)]++;
    }

    index[0] = 0;
    for (int i = 1; i < byte_count; i++) {
        index[i] = index[i - 1] + freq[i - 1];
    }

    for (int i = 0; i < n; i++) {
        int where = index[get_byte(x[i], byte)]++;
        y[where] = x[i];
    }
}

int main() {
    in >> n >> a >> b >> c;
    v[0] = b % c;
    for (int i = 1; i < n; i++) {
        v[i] = ((1LL * a * v[i - 1] % c) + b) % c;
    }
    for (int i = 0; i < num_bytes; i++) {
        if (i % 2 == 0) {
            counting_sort(v, temp, i);
        } else {
            counting_sort(temp, v, i);
        }
    }
    for (int i = 0; i < n; i += 10) {
        out << v[i] << " ";
    }

    return 0;
}