32652023-02-23 15:55:23rennRészekre (40)cpp17Időlimit túllépés 18/40575ms6608 KiB
#include <bits/stdc++.h>
using namespace std;

#define GOTTAGOFAST cin.tie(0); ios::sync_with_stdio(0);

struct Node {
    int value;
    Node *next;
    Node *prev;
};

int main()
{
    GOTTAGOFAST

    int n;
    cin >> n;

    vector<Node> pontok(n+2);

    pontok[0].value = 1000001;
    pontok[0].next = &pontok[1];
    pontok[n+1].prev = &pontok[n];

    for(int i = 1; i <= n; i++)
    {
        cin >> pontok[i].value;
        pontok[i].prev = &pontok[i-1];
        pontok[i].next = &pontok[i+1];
    }

    int tval = pontok[n].value, inters = 0;
    bool cutt = false;
    Node *max = &pontok[n];
    Node *curr = max;
    Node *temp;

    while(true)
    {
        inters++;
        cutt = true;
        temp = max->prev;
        curr = max;

        max->prev->next = max->next;
        max->next->prev = max->prev;
        while(temp != &pontok[0])
        {
            if(cutt && temp->value >= curr->value)
            {
                max = temp;
                cutt = false;
            }

            if(temp->value < curr->value)
            {
                temp->prev->next = temp->next;
                temp->next->prev = temp->prev;
                curr = temp;
            }
            temp = temp->prev;
        }
        if(cutt) break;
    }

    cout << inters << "\n";

    return 0;
}
RészfeladatÖsszpontTesztVerdiktIdőMemória
base18/40
1Elfogadva0/03ms1868 KiB
2Elfogadva0/0122ms6608 KiB
3Elfogadva2/23ms2316 KiB
4Elfogadva2/23ms2524 KiB
5Elfogadva2/23ms2752 KiB
6Elfogadva3/33ms2980 KiB
7Elfogadva3/36ms3268 KiB
8Elfogadva3/312ms3452 KiB
9Elfogadva3/341ms3704 KiB
10Időlimit túllépés0/3561ms4096 KiB
11Időlimit túllépés0/3574ms4552 KiB
12Időlimit túllépés0/3546ms5512 KiB
13Időlimit túllépés0/4570ms5228 KiB
14Időlimit túllépés0/4564ms5408 KiB
15Időlimit túllépés0/5575ms5596 KiB