JIAKAOBO

LeetCode

venmo
wechat

感谢赞助!

  • ㊗️
  • 大家
  • offer
  • 多多!

Problem

You are given several logs, where each log contains a unique ID and timestamp. Timestamp is a string that has the following format: Year:Month:Day:Hour:Minute:Second, for example, 2017:01:01:23:59:59. All domains are zero-padded decimal numbers.

Implement the LogSystem class:

  • LogSystem() Initializes the LogSystem object.
  • void put(int id, string timestamp) Stores the given log (id, timestamp) in your storage system.
  • int[] retrieve(string start, string end, string granularity) Returns the IDs of the logs whose timestamps are within the range from start to end inclusive. start and end all have the same format as timestamp, and granularity means how precise the range should be (i.e. to the exact Day, Minute, etc.). For example, start = “2017:01:01:23:59:59”, end = “2017:01:02:23:59:59”, and granularity = “Day” means that we need to find the logs within the inclusive range from Jan. 1st 2017 to Jan. 2nd 2017, and the Hour, Minute, and Second for each log entry can be ignored.

Example 1:

Input
["LogSystem", "put", "put", "put", "retrieve", "retrieve"]
[[], [1, "2017:01:01:23:59:59"], [2, "2017:01:01:22:59:59"], [3, "2016:01:01:00:00:00"], ["2016:01:01:01:01:01", "2017:01:01:23:00:00", "Year"], ["2016:01:01:01:01:01", "2017:01:01:23:00:00", "Hour"]]
Output
[null, null, null, null, [3, 2, 1], [2, 1]]

Explanation
LogSystem logSystem = new LogSystem();
logSystem.put(1, "2017:01:01:23:59:59");
logSystem.put(2, "2017:01:01:22:59:59");
logSystem.put(3, "2016:01:01:00:00:00");

// return [3,2,1], because you need to return all logs between 2016 and 2017.
logSystem.retrieve("2016:01:01:01:01:01", "2017:01:01:23:00:00", "Year");

// return [2,1], because you need to return all logs between Jan. 1, 2016 01:XX:XX and Jan. 1, 2017 23:XX:XX.
// Log 3 is not returned because Jan. 1, 2016 00:00:00 comes before the start of the range.
logSystem.retrieve("2016:01:01:01:01:01", "2017:01:01:23:00:00", "Hour");

Constraints:

  • 1 <= id <= 500
  • 2000 <= Year <= 2017
  • 1 <= Month <= 12
  • 1 <= Day <= 31
  • 0 <= Hour <= 23
  • 0 <= Minute, Second <= 59
  • granularity is one of the values [“Year”, “Month”, “Day”, “Hour”, “Minute”, “Second”].
  • At most 500 calls will be made to put and retrieve.

Code

class LogSystem {
    String min = "2000:01:01:00:00:00";
    String max = "2017:12:31:23:59:59";
    private HashMap<String, Integer> map;
    private TreeMap<String, LinkedList<Integer>> logs;

    public LogSystem() {
        map = new HashMap<>();
        map.put("Year", 4);
        map.put("Month", 7);
        map.put("Day", 10);
        map.put("Hour", 13);
        map.put("Minute", 16);
        map.put("Second", 19);
        logs = new TreeMap<>();
    }

    // O(log(n))
    public void put(int id, String timestamp) {
        if(!logs.containsKey(timestamp)) {
            logs.put(timestamp, new LinkedList<>());
        }

        logs.get(timestamp).add(id);
    }

    public List<Integer> retrieve(String s, String e, String gra) {
        int index = map.get(gra);
        String start = s.substring(0, index) + min.substring(index);
        String end = e.substring(0, index) + max.substring(index);

        /**
         * O(1) Time Complexity
         * public NavigableMap<K,V> subMap(
         *      K fromKey,
         *      boolean fromInclusive, 
         *      K toKey, 
         *      boolean toInclusive
         * )
         */
        Map<String, LinkedList<Integer>> sub = logs.subMap(start, true, end, true);

        LinkedList<Integer> res = new LinkedList<>();
        for (LinkedList<Integer> list : sub.values()) {
            res.addAll(list);
        }
        
        return res;
    }
}
class LogSystem {
    List<String[]> timestamps = new LinkedList<>();
    List<String> units = Arrays.asList("Year", "Month", "Day", "Hour", "Minute", "Second");
    int[] indices = new int[]{4, 7, 10, 13, 16, 19};
    
    public void put(int id, String timestamp) { 
        timestamps.add(new String[]{id + "", timestamp}); 
    }

    public List<Integer> retrieve(String start, String end, String granularity) {
        List<Integer> res = new LinkedList<>();
        int idx = indices[units.indexOf(granularity)];

        for (String[] timestamp : timestamps) {
            int startComp = timestamp[1].substring(0, idx).compareTo(start.substring(0, idx));
            int endComp = timestamp[1].substring(0, idx).compareTo(end.substring(0, idx));
            
            if (startComp >= 0 && endComp <= 0) {
                res.add(Integer.parseInt(timestamp[0]));
            }
        }

        return res;
    }
}