aboutsummaryrefslogtreecommitdiff
path: root/works/solutions/leetcode/cpp/1051.cpp
blob: 6ded6f5a906d63538a41aec773511f78a81ed119 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#include <vector>

using std::vector;

class Solution
{
public:
    int heightChecker(vector<int> &heights)
    {
        vector<int> height_counter(101);
        for (int height : heights)
        {
            height_counter[height]++;
        }

        auto iter = heights.cbegin();

        int result = 0;

        for (int height = 1; height <= 100; height++)
        {
            int height_count = height_counter[height];
            while (height_count > 0)
            {
                if (*iter++ != height)
                    result++;
                --height_count;
            }
        }

        return result;
    }
};