-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path0432-all-oone-data-structure.rb
93 lines (80 loc) · 2.58 KB
/
0432-all-oone-data-structure.rb
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
89
90
91
92
93
# frozen_string_literal: true
# 432. All O`one Data Structure
# Hard
# https://leetcode.com/problems/all-oone-data-structure
=begin
Design a data structure to store the strings' count with the ability to return the strings with minimum and maximum counts.
Implement the AllOne class:
* AllOne() Initializes the object of the data structure.
* inc(String key) Increments the count of the string key by 1. If key does not exist in the data structure, insert it with count 1.
* dec(String key) Decrements the count of the string key by 1. If the count of key is 0 after the decrement, remove it from the data structure. It is guaranteed that key exists in the data structure before the decrement.
* getMaxKey() Returns one of the keys with the maximal count. If no element exists, return an empty string "".
* getMinKey() Returns one of the keys with the minimum count. If no element exists, return an empty string "".
Note that each function must run in O(1) average time complexity.
Example 1:
Input
["AllOne", "inc", "inc", "getMaxKey", "getMinKey", "inc", "getMaxKey", "getMinKey"]
[[], ["hello"], ["hello"], [], [], ["leet"], [], []]
Output
[null, null, null, "hello", "hello", null, "hello", "leet"]
Explanation
AllOne allOne = new AllOne();
allOne.inc("hello");
allOne.inc("hello");
allOne.getMaxKey(); // return "hello"
allOne.getMinKey(); // return "hello"
allOne.inc("leet");
allOne.getMaxKey(); // return "hello"
allOne.getMinKey(); // return "leet"
Constraints:
* 1 <= key.length <= 10
* key consists of lowercase English letters.
* It is guaranteed that for each call to dec, key is existing in the data structure.
* At most 5 * 104 calls will be made to inc, dec, getMaxKey, and getMinKey.
=end
class AllOne
def initialize
@smin, @smax, @str = "", "", Hash.new(0)
end
=begin
:type key: String
:rtype: Void
=end
def inc(key)
@str[key] += 1
@smax = key if @str[key] > @str[@smax]
@smin = find_v
end
=begin
:type key: String
:rtype: Void
=end
def dec(key)
@str.delete(key) if (@str[key] -= 1) == 0
@smin = key if @str[key] < @str[@smin]
@smin = find_v if @str[@smin] == 0
@smax = find_v(1) if key == @smax
end
=begin
:rtype: String
=end
def get_max_key
@smax
end
=begin
:rtype: String
=end
def get_min_key
@smin
end
private
def find_v(sign = 0, val = sign == 0 ? @str.values.min : @str.values.max)
@str.find { |_, v| v == val }&.first || ""
end
end
# Your AllOne object will be instantiated and called as such:
# obj = AllOne.new()
# obj.inc(key)
# obj.dec(key)
# param_3 = obj.get_max_key()
# param_4 = obj.get_min_key()