121712024-12-06 12:51:03tamasmarkHőségriadó (50 pont)cpp17Hibás válasz 6/5021ms780 KiB
// hosegiado.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <vector>

using namespace std;

int i, j, ho, hosszmeleg, a, b,n,hosszhideg,dbho,dbhideg;
bool horiado=false;
vector<int>x;

int main()
{
    cin >> n>>hosszmeleg>>hosszhideg>>ho;
    x.resize(n + 1);
    for (i = 1; i <= n; ++i)
    {
        cin >> x[i];
        if (x[i] > ho)
        {
            dbhideg = 0;
            dbho++;
            if (dbho >= hosszmeleg)
            {
                horiado = true;
                a++;
            }
        }
        else if (x[i] < ho)
        {
            dbho = 0;
            dbhideg++;
            if (dbhideg > hosszhideg)
            {
                horiado = false;
            }
        }

    }
    cout << a;
    return 0;
}
/*
9 2 2 30
28 32 32 28 32 26 26 32 32
*/
// 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
base6/50
1Elfogadva0/01ms320 KiB
2Hibás válasz0/021ms748 KiB
3Hibás válasz0/21ms320 KiB
4Elfogadva2/21ms320 KiB
5Elfogadva2/21ms320 KiB
6Elfogadva2/21ms320 KiB
7Hibás válasz0/21ms320 KiB
8Hibás válasz0/41ms320 KiB
9Hibás válasz0/48ms756 KiB
10Hibás válasz0/410ms608 KiB
11Hibás válasz0/414ms596 KiB
12Hibás válasz0/412ms616 KiB
13Hibás válasz0/417ms756 KiB
14Hibás válasz0/42ms320 KiB
15Hibás válasz0/419ms568 KiB
16Hibás válasz0/420ms688 KiB
17Hibás válasz0/420ms780 KiB