2018-06-14

Q1:leetcode 622
Q2:leetcode 259
Q3:leetcode 15
Q4:leetcode 18
Q5:leetcode merge interval
Q6:leetcode insert merge
Q7: leetcode 507
Q8: leetcode 1
Q9:leetcode 16
Q10:leetcode 454

class Solution {
    public int triangleNumber(int[] nums) {
        if (nums == null || nums.length == 0) {
            return 0;
        } 
        Arrays.sort(nums); //一定要sort
        int n = nums.length;
        int result = 0;
        for (int k = n - 1; k >= 2; k--) {
            int i = 0;
            int j = k - 1;
            while (i < j) { //没有去等 因为不重复用
                if (nums[i] + nums[j] <= nums[k]) {
                    i++;
                } else {
                    result += j - i;//j fixed, from i, i + 1, ...j - 1
                    j--;                }
            } 
        }
        return result;
    }
}

//Q2
class Solution {
    public int threeSumSmaller(int[] nums, int target) {
        if (nums == null || nums.length == 0) {
            return 0;
        }
        Arrays.sort(nums);
        int n = nums.length;
        int count = 0;
        for (int k = n - 1; k >= 2; k--) {
            int i = 0;
            int j = k - 1;
            while (i < j) {
                int sum = nums[i] + nums[j];
                int temptarget = target - nums[k];
                if (sum < temptarget) {
                    count += j - i;
                    i++;
                } else {
                    j--;
                }
            }
        }
        return count;
    }
}

//Q3
class Solution {
    public List<List<Integer>> threeSum(int[] nums) {
        List<List<Integer>> result = new ArrayList<>();
        if (nums == null || nums.length == 0) {
            return result;
        }
        int n = nums.length;
        Arrays.sort(nums);
       
        for (int k = n - 1; k >= 2; k--) {
            int i = 0;
            int j = k - 1;
            while (i < j) {
                int sum = nums[i] + nums[j];
                if (sum < -nums[k]) {
                    i++;
                } else if (sum > -nums[k]) {
                    j--;
                } else {
                    List<Integer> oneSol = new ArrayList<>();
                    oneSol.add(nums[i]);
                    oneSol.add(nums[j]);
                    oneSol.add(nums[k]);
                    result.add(oneSol);
                    i++;
                    while (i < j && nums[i] == nums[i - 1]) {
                    //while (i+ 1 < j && nums[i] == nums[i + 1]) {
                        i++;
                    }
                    j--;
                }
            }
            while (k - 1 > 0 && nums[k] == nums[k - 1]) {
                k--;
            }
        }
        return result;
    }
}
//
class Solution {
    public List<List<Integer>> fourSum(int[] nums, int target) {
        List<List<Integer>> result = new ArrayList<>();
        if (nums == null || nums.length == 0) {
            return result;
        }
        int n = nums.length;
        Arrays.sort(nums);
       
        for (int k = n - 1; k >= 3; k--) {
            for (int m = k - 1; m >= 2; m--) {
                int Ntarget = target - nums[k] - nums[m];
            int i = 0;
            int j = m - 1;
            while (i < j) {
                int sum = nums[i] + nums[j];
                if (sum < Ntarget) {
                    i++;
                } else if (sum > Ntarget) {
                    j--;
                } else {
                    List<Integer> oneSol = new ArrayList<>();
                    oneSol.add(nums[i]);
                    oneSol.add(nums[a]);
                    oneSol.add(nums[m]);
                    oneSol.add(nums[k]);
                    result.add(oneSol);
                    i++;
                    while (i < j && nums[i] == nums[i - 1]) {
                    //while (i+ 1 < j && nums[i] == nums[i + 1]) {
                        i++;
                    }
                    j--;
                }
            }
            
            while (m - 1 > 0 && nums[m] == nums[m - 1]) {
                m--;
            }
        }
        while (k - 1 > 0 && nums[k] == nums[k - 1]) {
                k--;
            }
        }
        return result;
    
    }
}

//Q5
if (newInterval == null) return intervals;
 boolean hasAdded =  false;
 
for (int i = 0; i < n; i++) {
      Interval cur = intervals.get(i);
      if (newInterval.start > cur.end) {
        results.add(cur);
        } else if (cur.start > newInterval.end) {
        if (!hasAdded) {
    results.add(newInterval);
    hasAdded = true;
}
results.add(cur);
} else {
    newInterval.end = Math.max(cur.end, newInterval.end);
    newInterval.start = Math.min(cur.start, newInterval.start);

}
}
if (!hasAdded) {
     results.add(newInterval);
}
return results;


//Q6
class Solution {
    public List<Interval> merge(List<Interval> intervals) {
    //TODO: null check
        Arrays.sort(intervals, new Comparator<Interval>(){
            @override
            public int compare(Interval o1, Interval o2) {
                return o1.start.CompareTo(o2.start);//Use Integer.Compare
            }
        });
        
        List<Interval> results = new ArrayList<>();
        int n = intervals.size();
        Interval temp = null;
        for (int i = 0; i < n; i++) {
            Interval cur = intervals.get(i);
            if (temp == null) {
                temp = new Interval(intervals.get(i).start, intervals.get(i).end);
            }
            if (i + 1 < n && intervals.get(i + 1).start <= temp.end) {
                temp.end = Math.max(temp.end, intervals.get(i + 1).end);
                i++;
            } else {
                results.add(temp);
                temp == null;
            }
        }

//
public class Solution {
    public boolean checkPerfectNumber(int num) {
        if (num == 1) return false;
        
        int sum = 0;
        for (int i = 2; i <= Math.sqrt(num); i++) {
            if (num % i == 0) {
                sum += i;
                if (i != num / i) sum += num / i;
            }
        }
        sum++;
        
        return sum == num;
    }
}
//
public int[] twoSum(int[] nums, int target) {
Map<Integer,Integer> hashMap = new HashMap<>();
int diff;
int result[] = new int[2];
for(int i=0;i<nums.length;i++){
diff = target - nums[i];
if(hashMap.containsKey(diff)){
result[0] = hashMap.get(diff);
result[1] = i;
break;
}else {
hashMap.put(nums[i],i);
}
}
return result;
}
//private int threeSumClosestUsingTwoPointers(int[] nums, int target) {
        
        // Sorting is essential for two pointer solution.
        Arrays.sort(nums);
        int closestThreeSum = Integer.MAX_VALUE;
        int minDistance = Integer.MAX_VALUE;
        boolean foundTarget = false;
        
        for(int i=0; i<nums.length; i++) {
            int beg=i+1;
            int end=nums.length-1;
            while(beg < end) {
                int twoSum = nums[beg] + nums[end];
                if(twoSum == target - nums[i]) {
                    closestThreeSum = target;
                    foundTarget = true;
                    break;
                }
                int possibleClosestTarget = twoSum + nums[i];
                int distanceFromTarget = Math.abs(target - possibleClosestTarget);
                if(distanceFromTarget < minDistance) {
                    minDistance = distanceFromTarget;
                    closestThreeSum = possibleClosestTarget;
                }
                if(twoSum < target - nums[i]) beg++;
                else end--;
            }
            
            if(foundTarget) break;
            
        }
        return closestThreeSum;
    }
//
public int fourSumCount(int[] A, int[] B, int[] C, int[] D) {
    /* sorting, O(n^2*log(n)) time, O(n^2) space, no map */
    int nAB = A.length * B.length;
    int[] sumAB = new int[nAB];
    int i = 0;
    for (int a : A) {
        for (int b : B) {
            sumAB[i++] = a + b;
        }
    }
    Arrays.sort(sumAB);
    int nCD = C.length * D.length;
    int[] negSumCD = new int[nCD];
    i = 0;
    for (int c : C) {
        for (int d : D) {
            negSumCD[i++] = - (c + d);
        }
    }
    Arrays.sort(negSumCD);
    // if sumAB = negSumCD, then 4 sum = 0
    i = 0;
    int j = 0;
    int res = 0;
    while (i < nAB && j < nCD) {
        if (sumAB[i] < negSumCD[j]) i++;
        else if (sumAB[i] > negSumCD[j]) j++;
        else {
            // sumAB[i] == negSumCD[j]
            // need to count number of same consecutive values, and multiply them
            int countAB = 1, countCD = 1;
            while (++i < nAB && sumAB[i-1] == sumAB[i]) countAB += 1;
            while (++j < nCD && negSumCD[j-1] == negSumCD[j]) countCD += 1;
            res += countAB * countCD;
        }
    }
    return res;
}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 200,667评论 5 472
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,361评论 2 377
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 147,700评论 0 333
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,027评论 1 272
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 62,988评论 5 361
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,230评论 1 277
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,705评论 3 393
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,366评论 0 255
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,496评论 1 294
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,405评论 2 317
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,453评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,126评论 3 315
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,725评论 3 303
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,803评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,015评论 1 255
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,514评论 2 346
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,111评论 2 341

推荐阅读更多精彩内容