123722024-12-13 18:56:39szabelrSorozat generáláscpp17Wrong answer 29/5035ms828 KiB
#include <iostream>
#include <string>
#include <unordered_map>
#include <vector>
#include <algorithm>

int h(int x, int y) {
    return x > y;
}

using namespace std;

int main() {
    int m, x, a, b, n, k;
    cin >> m >> x >> a >> b >> n >> k;

    int* sor = new int[n + 1];
    unordered_map<int, int> seen;
    int min_distance = n + 1;

    sor[0] = x;
    for (int i = 1; i <= n; i++) {
        sor[i] = sor[i - 1] * a + b;
        string szam = to_string(sor[i]);
        while (szam.length() < 4 * m) {
            szam = '0' + szam;
        }
        szam = szam.substr(m, 2 * m);
        int jo = stoi(szam);

        if (seen.count(jo)) {
            // Calculate the distance
            min_distance = min(min_distance, i - seen[jo]);
        }
        seen[jo] = i;
        sor[i] = jo;
    }

    cout << min_distance << endl;

    sort(sor, sor + n + 1, h);
    cout << sor[k - 1] << endl;

    delete[] sor;
    return 0;
}
SubtaskSumTestVerdictTimeMemory
base29/50
1Accepted0/01ms320 KiB
2Wrong answer0/032ms576 KiB
3Partially correct1/21ms320 KiB
4Accepted2/22ms320 KiB
5Accepted2/22ms408 KiB
6Accepted2/21ms320 KiB
7Accepted2/22ms320 KiB
8Accepted4/43ms320 KiB
9Accepted4/46ms464 KiB
10Accepted4/413ms448 KiB
11Accepted4/410ms568 KiB
12Accepted4/417ms568 KiB
13Wrong answer0/428ms724 KiB
14Wrong answer0/432ms828 KiB
15Wrong answer0/432ms824 KiB
16Wrong answer0/435ms660 KiB
17Wrong answer0/435ms664 KiB