119912024-11-24 12:05:22banhelyiBináris fa magassága (50 pont)cpp17Időlimit túllépés 20/50600ms1012 KiB
#include <iostream>
#include <vector>
#include <cmath>

using namespace std;

long int nagy(long int m,long int t[])
{
    long int legnagyobb = 0;
    for(long int i = 0; i< m; i++){
        if(t[i] > legnagyobb){
            legnagyobb = t[i];
        }
        //cout << t[i] << " " ;
    }
    //cout << endl;
    return legnagyobb;
}
int main()
{
    int n = 0;
    int m = 0;
    cin >> n;
    cin >> m;
    int a;
    int b;
    long int legnagyobb = 0;

    int *fa= new int[(long int)pow(2,n)-1];

    for(long int i=0; i < (long int)pow(2,n)-1; i++){
        fa[i] = 1;
    }

    long int *level=new long int[(int)pow(2,(n-1))];


    for(long int i=0; i < pow(2,(n-1)); i++){
        level[i] = n-1;
    }

    for(int i=0; i < m; i++){
        cin >> a;
        cin >> b;

        //cout << b << " " << fa[a-1] << " ";
        int valt = b - fa[a-1];

        fa[a-1] = b;
        int elso=a;
        int db=1;
        while (elso*2<(long int)pow(2,n)-1){
            elso*=2;
            db*=2;
        }
        //cout<<elso<<" " <<db << " " << valt << " " <<  elso-(int)pow(2,(n-1)) <<endl;
        for(long int j=0; j < db; j++){
            level[elso-(long int)pow(2,(n-1))+j] += valt;
        }
        cout << nagy((long int) pow(2,(n-1)),level) << "\n";
    }


    return 0;
}
RészfeladatÖsszpontTesztVerdiktIdőMemória
base20/50
1Elfogadva0/01ms320 KiB
2Időlimit túllépés0/0578ms1012 KiB
3Elfogadva2/23ms320 KiB
4Elfogadva2/23ms508 KiB
5Elfogadva2/23ms320 KiB
6Elfogadva2/23ms376 KiB
7Elfogadva3/33ms320 KiB
8Elfogadva3/33ms348 KiB
9Elfogadva3/34ms332 KiB
10Elfogadva3/33ms320 KiB
11Időlimit túllépés0/2598ms944 KiB
12Időlimit túllépés0/2600ms944 KiB
13Időlimit túllépés0/2600ms948 KiB
14Időlimit túllépés0/2587ms824 KiB
15Időlimit túllépés0/2589ms940 KiB
16Időlimit túllépés0/2592ms940 KiB
17Időlimit túllépés0/2600ms944 KiB
18Időlimit túllépés0/2587ms824 KiB
19Időlimit túllépés0/2587ms708 KiB
20Időlimit túllépés0/3589ms944 KiB
21Időlimit túllépés0/3600ms924 KiB
22Időlimit túllépés0/3584ms824 KiB
23Időlimit túllépés0/3583ms1012 KiB