63632023-11-23 20:29:43MrChipserSorozat generáláscpp11Wrong answer 30/5075ms5928 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> 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<int,int>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/03ms1964 KiB
2Wrong answer0/075ms3992 KiB
3Accepted2/23ms2164 KiB
4Accepted2/24ms2644 KiB
5Accepted2/24ms2616 KiB
6Accepted2/24ms2764 KiB
7Accepted2/24ms3048 KiB
8Accepted4/44ms3172 KiB
9Accepted4/410ms3596 KiB
10Accepted4/419ms4240 KiB
11Accepted4/419ms4420 KiB
12Accepted4/432ms5296 KiB
13Wrong answer0/454ms5476 KiB
14Wrong answer0/464ms5840 KiB
15Wrong answer0/448ms5872 KiB
16Wrong answer0/463ms5848 KiB
17Wrong answer0/472ms5928 KiB