Monday, August 10, 2020

781. Rabbits in Forest ---------M

 In a forest, each rabbit has some color. Some subset of rabbits (possibly all of them) tell you how many other rabbits have the same color as them. Those answers are placed in an array.

Return the minimum number of rabbits that could be in the forest.

Examples:
Input: answers = [1, 1, 2]
Output: 5
Explanation:
The two rabbits that answered "1" could both be the same color, say red.
The rabbit than answered "2" can't be red or the answers would be inconsistent.
Say the rabbit that answered "2" was blue.
Then there should be 2 other blue rabbits in the forest that didn't answer into the array.
The smallest possible number of rabbits in the forest is therefore 5: 3 that answered plus 2 that didn't.

Input: answers = [10, 10, 10]
Output: 11

Input: answers = []
Output: 0

Note:

  1. answers will have length at most 1000.
  2. Each answers[i] will be an integer in the range [0, 999].

A:

思路就是把相同的报数,放到一起,这样可以处理

class Solution {
public:
    int numRabbits(vector<int>& answers) {
        unordered_map<int,float> count;
        int res = 0;
        for(auto v:answers)
            count[v + 1] += 1;
        
        auto iter = count.begin();
        while(iter!= count.end()){
            res += ceil(iter->second / iter->first )*iter->first;
            iter++;
        }
        return res;
    }
};

错误

一开始,我们都用的是int, 结果 ceil(int / int) == ceil(3/2) = ceil(1) = 1. 





No comments:

Post a Comment