85142024-01-20 03:12:20qertendBináris fa magassága (50 pont)cpp17Runtime error 0/50570ms5876 KiB
#include <iostream>
#include <cmath>
using namespace std;

struct Node {
    int distanceUp;
    int endNodesStart;
    int endNodesEnd;
    int depth;
};

Node newNode(int ID, int treeDepth) {
    int layer = 1;
    float tmp = ID;
    while (tmp >= 2) {
        tmp /= 2;
        layer++;
    }
    Node out;
    out.distanceUp = 1;
    int layerDif =pow(2, treeDepth-layer);
    out.endNodesStart = ID*layerDif;
    out.endNodesEnd = ID*layerDif + layerDif-1;
    return out;
}

void updateDepth(int change, Node array[], int start, int end) {
    for (int i = start; i <= end; i++) {
        array[i].depth += change;
    }
}

int max(Node array[], int start, int end) {
    int max = 0;
    for (int i = start; i <= end; i++) {
        if (array[i].depth > max) max = array[i].depth;
    }
    return max;
}

int main() {
    int treeDepth, M;
    cin >> treeDepth;
    cin >> M;
    int longestBranch = 0;
    int arrayLength = pow(2, treeDepth)-1;
    int endNodesStart = pow(2, treeDepth-1);
    Node allNodes[arrayLength];
    //create Nodes
    for (int i = 0; i < arrayLength; i++) {
        allNodes[i] = newNode(i+1, treeDepth);
    }
    //set default length for end Nodes
    for (int i = endNodesStart; i < arrayLength; i++) {
        allNodes[i].depth = treeDepth-1;
    }
    //read instructions
    for (int i = 0; i < M; i++) {
        int newDistance, nodeID;
        cin >> nodeID;
        nodeID--;
        cin >> newDistance;
        Node &modifiedNode = allNodes[nodeID];
        int change = newDistance-modifiedNode.distanceUp; 
        modifiedNode.distanceUp = newDistance;
        updateDepth(change, allNodes, modifiedNode.endNodesStart, modifiedNode.endNodesEnd);

        if (change > 0) {
            int currentHeight = max(allNodes, modifiedNode.endNodesStart, modifiedNode.endNodesEnd);
            if (currentHeight > longestBranch) longestBranch = currentHeight;
        }
        else if (change < 0) {
            longestBranch = max(allNodes, endNodesStart, arrayLength-1);
        }
        cout << longestBranch << "\n";
    }
}
SubtaskSumTestVerdictTimeMemory
base0/50
1Accepted0/03ms1880 KiB
2Runtime error0/06ms4256 KiB
3Runtime error0/23ms2524 KiB
4Runtime error0/23ms2680 KiB
5Runtime error0/23ms2784 KiB
6Runtime error0/23ms2856 KiB
7Runtime error0/33ms3040 KiB
8Runtime error0/33ms3184 KiB
9Runtime error0/33ms3196 KiB
10Runtime error0/33ms3196 KiB
11Runtime error0/221ms5240 KiB
12Runtime error0/221ms5124 KiB
13Runtime error0/223ms5376 KiB
14Time limit exceeded0/2570ms3628 KiB
15Runtime error0/221ms5440 KiB
16Runtime error0/27ms5328 KiB
17Runtime error0/27ms5496 KiB
18Runtime error0/26ms5340 KiB
19Runtime error0/27ms5592 KiB
20Runtime error0/323ms5876 KiB
21Runtime error0/323ms5800 KiB
22Runtime error0/323ms5632 KiB
23Runtime error0/323ms5636 KiB