63642023-11-23 20:33:03MrChipserSorozat generáláscpp11Wrong answer 30/5075ms5664 KiB
#include <iostream>
#include <vector>
#include <cmath>
#include <bits/stdc++.h>
using namespace std;

int main()
{
    int m,x,a,b,n,k;
    vector<long long> sorozat;
    cin >> m >> x >> a >> b >> n >> k;
    for(int i = 0; i <n; i++)
    {
        long long c = x*a+b;
        //cout << c << endl;
        vector<long long>akt;
        //cout << c << endl;
        while(c!=0)
        {
            akt.insert(akt.begin(),c%10);
            c/=10;
        }
        if(akt.size()!=4*m)
        {
            while(akt.size()!=4*m)
                akt.insert(akt.begin(),0);
        }
        int d=0;
        int szorzo = pow(10,2*m-1);
        for(int i = 0; i < 2*m; i++)
        {
            d+=szorzo*akt[4*m-2*m-m+i];
            szorzo/=10;
        }
        sorozat.push_back(d);
        x=d;
    }
    //for(int i = 0; i < sorozat.size(); i++)
        //cout << sorozat[i] << " ";
    int mintav = n;
    map<long,long>hmap;
    int elozo=0,akt=0;
    for(int i = 0; i <sorozat.size(); i++)
    {
        if(hmap.find(sorozat[i])!=hmap.end())
        {
            akt = i;
            elozo = hmap[sorozat[i]];
            if(akt-elozo < mintav)
                mintav = akt-elozo;
        }
        hmap[sorozat[i]]=i;

    }
    cout << mintav << endl;
    sort(sorozat.begin(),sorozat.end());
    cout << sorozat[n-k-1];
    return 0;
}
SubtaskSumTestVerdictTimeMemory
base30/50
1Wrong answer0/03ms1680 KiB
2Wrong answer0/075ms4016 KiB
3Accepted2/23ms2256 KiB
4Accepted2/24ms2640 KiB
5Accepted2/24ms2968 KiB
6Accepted2/23ms3156 KiB
7Accepted2/24ms3128 KiB
8Accepted4/44ms3184 KiB
9Accepted4/410ms3532 KiB
10Accepted4/418ms4048 KiB
11Accepted4/419ms4264 KiB
12Accepted4/429ms5284 KiB
13Wrong answer0/450ms5368 KiB
14Wrong answer0/463ms5496 KiB
15Wrong answer0/446ms5576 KiB
16Wrong answer0/459ms5656 KiB
17Wrong answer0/471ms5664 KiB