27162023-01-19 12:44:35AbbenceKártyajátékcpp17Elfogadva 30/3085ms7136 KiB
#include <iostream>
#include <vector>
#include <algorithm>

/*
OKTV 2022 II. fordulo
*/

using namespace std;

int main()
{
    long n, k;
    cin >> n >> k;
    long hand[k];
    for(long i=0; i<k; i++){
        cin >> hand[i];
    }
    vector<long> played;
    played.push_back(hand[0]);
    for(long i=1; i<k; i++){
        if(hand[i] > played.back()){
            played.push_back(hand[i]);
        }
    }
    long playedSize = played.size();

    sort(hand,hand+k);

    long points = 0;

    if(playedSize == 1){
        if(k > 1) points = 1;
        else points = 0;
    }
    else{
        long interval_max = 0; //index
        bool wasPointInInterval = false;
        for(long i=0; i<k && interval_max < playedSize; i++){
            if(hand[i] != played.at(interval_max)){
                if(!wasPointInInterval){
                    points++;
                    wasPointInInterval = true;
                }
            }
            else{
                interval_max++;
                wasPointInInterval = false;
            }
        }
    }

    cout << points << endl;

    return 0;
}
/*
25 7
1 8 3 15 4 20 16


1 3 4 8 15 16 20
*/
RészfeladatÖsszpontTesztVerdiktIdőMemória
base30/30
1Elfogadva0/03ms1812 KiB
2Elfogadva0/083ms4736 KiB
3Elfogadva1/12ms2404 KiB
4Elfogadva1/12ms2540 KiB
5Elfogadva1/12ms2672 KiB
6Elfogadva2/23ms2884 KiB
7Elfogadva2/22ms2968 KiB
8Elfogadva2/22ms2972 KiB
9Elfogadva1/130ms4312 KiB
10Elfogadva2/245ms5912 KiB
11Elfogadva3/345ms5920 KiB
12Elfogadva3/346ms6048 KiB
13Elfogadva1/182ms4980 KiB
14Elfogadva2/282ms5612 KiB
15Elfogadva3/382ms7136 KiB
16Elfogadva3/385ms6320 KiB
17Elfogadva3/382ms6364 KiB