39452023-03-06 11:51:13tamasmarkLeggyorsabb pénzkeresés (50)cpp17Időlimit túllépés 44/50263ms5580 KiB
// penz kereses.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <vector>

using namespace std;

int n, i, mini, p, j,sum,db,a;
vector<long long>x;

int main()
{
    cin >> n >> p;
    x.resize(n + 1);
    for (i = 1; i <= n; ++i)
    {
        cin >> x[i];
    }
    i = 1;
    mini = 99999;
    while (i <= n)
    {
        if (sum == 0) a = i;
        sum += x[i];
        db++;
        if (sum >= p)
        {
            if (db < mini) mini = db;
            db = 0;
            sum = 0;
            i = a + 1;
        }
        else i++;
    }
    cout << mini;
    return 0;
}
/*
8 11
3 6 4 2 3 7 2 9

*/
// Run program: Ctrl + F5 or Debug > Start Without Debugging menu
// Debug program: F5 or Debug > Start Debugging menu

// Tips for Getting Started: 
//   1. Use the Solution Explorer window to add/manage files
//   2. Use the Team Explorer window to connect to source control
//   3. Use the Output window to see build output and other messages
//   4. Use the Error List window to view errors
//   5. Go to Project > Add New Item to create new code files, or Project > Add Existing Item to add existing code files to the project
//   6. In the future, to open this project again, go to File > Open > Project and select the .sln file
RészfeladatÖsszpontTesztVerdiktIdőMemória
base44/50
1Elfogadva0/03ms1752 KiB
2Időlimit túllépés0/0259ms3340 KiB
3Elfogadva2/22ms2204 KiB
4Elfogadva2/22ms2416 KiB
5Elfogadva2/23ms2656 KiB
6Elfogadva2/28ms2788 KiB
7Elfogadva2/218ms2968 KiB
8Elfogadva2/224ms2920 KiB
9Elfogadva2/28ms2960 KiB
10Elfogadva2/221ms2968 KiB
11Elfogadva2/232ms4320 KiB
12Időlimit túllépés0/2261ms2980 KiB
13Elfogadva2/2192ms4604 KiB
14Elfogadva2/275ms4688 KiB
15Elfogadva2/2188ms4604 KiB
16Elfogadva2/272ms4684 KiB
17Elfogadva2/267ms4808 KiB
18Elfogadva2/294ms4892 KiB
19Időlimit túllépés0/2232ms4904 KiB
20Elfogadva2/2158ms5116 KiB
21Elfogadva2/2103ms5024 KiB
22Elfogadva2/2136ms5152 KiB
23Időlimit túllépés0/2263ms5380 KiB
24Elfogadva2/2133ms5232 KiB
25Elfogadva2/2166ms5328 KiB
26Elfogadva2/2100ms5364 KiB
27Elfogadva2/297ms5580 KiB