首页 > 其他分享 >LeetCode 811. Subdomain Visit Count

LeetCode 811. Subdomain Visit Count

时间:2022-08-22 03:45:05浏览次数:123  
标签:Count count domain discuss 811 Subdomain com leetcode times

原题链接在这里:https://leetcode.com/problems/subdomain-visit-count/

题目:

A website domain "discuss.leetcode.com" consists of various subdomains. At the top level, we have "com", at the next level, we have "leetcode.com" and at the lowest level, "discuss.leetcode.com". When we visit a domain like "discuss.leetcode.com", we will also visit the parent domains "leetcode.com" and "com" implicitly.

A count-paired domain is a domain that has one of the two formats "rep d1.d2.d3" or "rep d1.d2" where rep is the number of visits to the domain and d1.d2.d3 is the domain itself.

  • For example, "9001 discuss.leetcode.com" is a count-paired domain that indicates that discuss.leetcode.com was visited 9001 times.

Given an array of count-paired domains cpdomains, return an array of the count-paired domains of each subdomain in the input. You may return the answer in any order. 

Example 1:

Input: cpdomains = ["9001 discuss.leetcode.com"]
Output: ["9001 leetcode.com","9001 discuss.leetcode.com","9001 com"]
Explanation: We only have one website domain: "discuss.leetcode.com".
As discussed above, the subdomain "leetcode.com" and "com" will also be visited. So they will all be visited 9001 times.

Example 2:

Input: cpdomains = ["900 google.mail.com", "50 yahoo.com", "1 intel.mail.com", "5 wiki.org"]
Output: ["901 mail.com","50 yahoo.com","900 google.mail.com","5 wiki.org","5 org","1 intel.mail.com","951 com"]
Explanation: We will visit "google.mail.com" 900 times, "yahoo.com" 50 times, "intel.mail.com" once and "wiki.org" 5 times.
For the subdomains, we will visit "mail.com" 900 + 1 = 901 times, "com" 900 + 50 + 1 = 951 times, and "org" 5 times.

Constraints:

  • 1 <= cpdomain.length <= 100
  • 1 <= cpdomain[i].length <= 100
  • cpdomain[i] follows either the "repi d1i.d2i.d3i" format or the "repi d1i.d2i" format.
  • repi is an integer in the range [1, 104].
  • d1id2i, and d3i consist of lowercase English letters.

题解:

Have a map to maintain the count.

For each dpdomain, first get its count and its domain.

For each domain and its subdomains, accumlate the count.

Note: there are multiple strings. Make sure to name them and don't mix them.

Time Complexity: O(m*n^2). m = dpdomains.length. n = string length. for each char in the string, substring also takes O(n).

Space: O(m*n^2). map size.

AC Java:

 1 class Solution {
 2     public List<String> subdomainVisits(String[] cpdomains) {
 3         List<String> res = new ArrayList<>();
 4         if(cpdomains == null || cpdomains.length == 0){
 5             return res;
 6         }
 7         
 8         Map<String, Integer> hm = new HashMap<>();
 9         for(String s : cpdomains){
10             int ind = s.indexOf(' ');
11             int count = Integer.valueOf(s.substring(0, ind));
12             String d = s.substring(ind + 1);
13             hm.put(d, hm.getOrDefault(d, 0) + count);
14             for(int i = 0; i < d.length(); i++){
15                 if(d.charAt(i) == '.'){
16                     String subD = d.substring(i + 1);
17                     hm.put(subD, hm.getOrDefault(subD, 0) + count);
18                 }
19             }
20         }
21         
22         for(Map.Entry<String, Integer> entry : hm.entrySet()){
23             res.add(entry.getValue() + " " + entry.getKey());
24         }
25         
26         return res;
27     }
28 }

 

标签:Count,count,domain,discuss,811,Subdomain,com,leetcode,times
From: https://www.cnblogs.com/Dylan-Java-NYC/p/16611596.html

相关文章

  • P3605 [USACO17JAN]Promotion Counting P 题解
    solution考虑权值线段树合并:首先离散化,然后对于一个节点,我们将它的所有子树合并上来,并统计所有能力指数的个数(权值线段树基本操作),查询时只需查询\(p_i+1\simn\)的和即......
  • CountDownLatch
    CountDownLatchCountDownLatch是一种通用的同步工具CountDownLatch内部的实现主要是依靠AQS的共享模式。当一个线程把CountDownLatch初始化了一个count之后,其他的线程......
  • 记一次linux用户登录Account locked due to failed logins
    1.背景对端sftp登录传输文件,一直登录不上,一会可以登录,一会又不行,知道彻底登录不上。2.处理#查看被锁次数pam_tally2--usertest#清除次数pam_tally2--user=te......
  • Codility CountBoundedSlices Python
    捣鼓了挺久总算整出一个可行解点击查看代码classQueue(object):def__init__(self):super(Queue,self).__init__()self.max_index=-1......
  • Codility CountConformingBitmasks
    CodilityCountConformingBitmasks100%scoresdefsolution(A,B,C):#writeyourcodeinPython3.6bit_list=[0]*32bit_A=[0]*32bit_B=......
  • 搞定面试官 - 可以介绍一下在 MySQL 中你平时是怎么使用 COUNT() 的嘛?
    大家好,我是程序员啊粥。相信在大家的工作中,有很多的功能都需要用到count(*)来统计表中的数据行数。同时,对于一些大数据的表,用count都是瑟瑟发抖,往往会结合缓存等进行......
  • 面试官:count(1)、count(*) 与 count(列名) 有什么区别?
      1. count(1)andcount(*)从执行计划来看,count(1)和count(*)的效果是一样的。当表的数据量大些时,对表作分析之后,使用count(1)还要比使用count(*)用时多! 当数据量......