【LeetCode第 164 场周赛】回顾

【LeetCode第 164 场周赛】回顾_第1张图片

刚完成的时候还70多名。。。然后后面两道题再也没做上来。

【LeetCode第 164 场周赛】回顾_第2张图片 

【LeetCode第 164 场周赛】回顾_第3张图片 

第一题

class Solution {
public:
    int minTimeToVisitAllPoints(vector>& points) {
        int sum=0;
        for(int i=1;i

第二题

class Solution {
public:
    int countServers(vector>& grid) {
        int m=grid.size();
        int n=grid[0].size();
        vector mm(m);
        vector nn(n);
        for(int i=0;i1||nn[l]>1){
                        sum++;
                    }
                }
            }
        }return sum;
    }
};

 

你可能感兴趣的:(LeetCode)