Leetcode175周赛

排名:233 / 2046
第一题:5332. 检查整数及其两倍数是否存在
解题思路:数据量不大,直接暴力过了。

class Solution {
    public boolean checkIfExist(int[] arr) {
        int n = arr.length;
		for (int i = 0; i < n; i++) {
			for (int j = i+1; j < n; j++) {
				if (arr[i]*2==arr[j] || arr[j]*2==arr[i]){
					return true;
				}
			}
		}
		return false;
    }
}

第二题:5333. 制造字母异位词的最小步骤数
解题思路:给定两个字符串,修改其中的一个字符串,使得组成的字母结构一样(如:abc,acb,bac),返回修改的最小次数。这里可以直接使用一个map,然后把其中一个字符串的所有字母存起来,来比较另一个字符串即可。

class Solution {
    public int minSteps(String s, String t) {
        Map<Character,Integer> map = new HashMap<>();
		for (int i = 0; i < t.length(); i++) {
			if (map.containsKey(t.charAt(i))){
				map.put(t.charAt(i),map.get(t.charAt(i))+1);
			}else {
				map.put(t.charAt(i),1);
			}
		}
		int ans = 0;
		for (int i = 0; i < s.length(); i++) {
			if (map.containsKey(s.charAt(i)) && map.get(s.charAt(i))>=1){
				map.put(s.charAt(i),map.get(s.charAt(i))-1);
			}else {
				ans++;
			}
		}
		return ans;
    }
}

第三题:5334. 推文计数
解题思路:利用一个map存储每一个人对应发推文的时间(Map<String,List<Integer>>),然后他的get方式需要简单判断一下时间单位,遍历每个时间单位,去比较计数即可。(ps:比赛过程中,提交的代码一直都是本地可以,线上不行,后来才知道是leetcode的显示bug,错误的其实并不是当前用例。还好最后压哨过了🤣)

class TweetCounts {
	Map<String,List<Integer>> ans;

    public TweetCounts() {
        ans = new HashMap<>();
    }
    
    public void recordTweet(String tweetName, int time) {
        if (ans.containsKey(tweetName)){
			ans.get(tweetName).add(time);
		}else {
			List<Integer> temp = new ArrayList<>();
			temp.add(time);
			ans.put(tweetName,temp);
		}
    }
    
    public List getTweetCountsPerFrequency(String freq, String tweetName, int startTime, int endTime) {
        if (!ans.containsKey(tweetName)){
			return new ArrayList<>();
		}
        int time = 59;
        if (freq.equals("hour")) time = 3599;
        if (freq.equals("day")) time = 86399;
    
		List<Integer> rec = new ArrayList<>();
		List<Integer> count = ans.get(tweetName);
		for (int i = startTime; i <= endTime; i=i+time) {
			int flag=0;
			for (int j = 0; j < count.size(); j++) {
				int end = (i+time)>endTime? endTime:(i+time);
				if (count.get(j)>=i && count.get(j)<=end){
					flag++;
				}
			}
			rec.add(flag);
            i++;
		}
		return rec;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值