-
Notifications
You must be signed in to change notification settings - Fork 0
/
1394.找出数组中的幸运数.cpp
89 lines (86 loc) · 1.66 KB
/
1394.找出数组中的幸运数.cpp
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/*
* @lc app=leetcode.cn id=1394 lang=cpp
*
* [1394] 找出数组中的幸运数
*
* https://leetcode-cn.com/problems/find-lucky-integer-in-an-array/description/
*
* algorithms
* Easy (67.50%)
* Likes: 9
* Dislikes: 0
* Total Accepted: 8.2K
* Total Submissions: 12.1K
* Testcase Example: '[2,2,3,4]'
*
* 在整数数组中,如果一个整数的出现频次和它的数值大小相等,我们就称这个整数为「幸运数」。
*
* 给你一个整数数组 arr,请你从中找出并返回一个幸运数。
*
*
* 如果数组中存在多个幸运数,只需返回 最大 的那个。
* 如果数组中不含幸运数,则返回 -1 。
*
*
*
*
* 示例 1:
*
* 输入:arr = [2,2,3,4]
* 输出:2
* 解释:数组中唯一的幸运数是 2 ,因为数值 2 的出现频次也是 2 。
*
*
* 示例 2:
*
* 输入:arr = [1,2,2,3,3,3]
* 输出:3
* 解释:1、2 以及 3 都是幸运数,只需要返回其中最大的 3 。
*
*
* 示例 3:
*
* 输入:arr = [2,2,2,3,3]
* 输出:-1
* 解释:数组中不存在幸运数。
*
*
* 示例 4:
*
* 输入:arr = [5]
* 输出:-1
*
*
* 示例 5:
*
* 输入:arr = [7,7,7,7,7,7,7]
* 输出:7
*
*
*
*
* 提示:
*
*
* 1 <= arr.length <= 500
* 1 <= arr[i] <= 500
*
*
*/
// @lc code=start
class Solution {
public:
int findLucky(vector<int>& arr) {
vector<int> cache(501, 0);
for(auto num: arr){
cache[num] ++;
}
for(int i = 500; i >= 1; i --){
if(i == cache[i]){
return i;
}
}
return -1;
}
};
// @lc code=end