zoukankan      html  css  js  c++  java
  • 448. Find All Numbers Disappeared in an Array

    Given an array of integers where 1 ≤ a[i] ≤ n (n = size of array), some elements appear twice and others appear once.

    Find all the elements of [1, n] inclusive that do not appear in this array.

    Could you do it without extra space and in O(n) runtime? You may assume the returned list does not count as extra space.

    Example:

    Input:

    [4,3,2,7,8,2,3,1]

     

    Output:

    [5,6]

     

    idea: It's hard to solve without extra space and in O(n) without the condition  1 ≤ a[i] ≤ n. 

    Solution 1: for the number a[a[i]-1], if it is positive, assign it to its opposite number, else unchange it. The logic is if i+1 appear in the array, a[i] will be negative, so if a[i] is positive, i+1 doesn't appear in the array.

     1 class Solution {
     2 public:
     3     vector<int> findDisappearedNumbers(vector<int>& nums) {
     4         vector<int> res;
     5         for (int i=0;i<nums.size();i++){
     6             int idx=abs(nums[i])-1;
     7             nums[idx]=(nums[idx]>0)?(-nums[idx]):nums[idx];
     8         }
     9         for (int i=0;i<nums.size();i++){
    10             if (nums[i]>0) res.push_back(i+1);
    11         }
    12         return res;
    13     }
    14 };

    Solution 2: move nums[i] from positon i to its right position nums[i]-1, swap nums[i] and nums[nums[i]-1]. Finally, if i doesn't equal nums[i]-1, means i+1 doesn't appear in the array. Note the line 6-8

     1 class Solution {
     2 public:
     3     vector<int> findDisappearedNumbers(vector<int>& nums) {
     4         vector<int> res;
     5         for (int i=0;i<nums.size();i++){
     6             if (nums[i]!=nums[nums[i]-1]){
     7                 swap(nums[i],nums[nums[i]-1]);
     8                 --i;
     9             }
    10         }
    11         for (int i=0;i<nums.size();i++){
    12             if (i!=nums[i]-1){
    13                 res.push_back(i+1);
    14             }
    15         }
    16         return res;
    17     }
    18 };

    Solution 3: add nums[nums[i]-1] to n, use (nums[i]-1)%n to avoid the overflow of nums[i]-1. Finally, if nums[i]<=n, i+1 is the disappeard number.

     1 class Solution {
     2 public:
     3     vector<int> findDisappearedNumbers(vector<int>& nums) {
     4         vector<int> res;
     5         int size=nums.size();
     6         for (int i=0;i<size;i++){
     7             nums[(nums[i]-1)%size]+=size; //mod to avoid overflow
     8         }
     9         for (int i=0;i<size;i++){
    10             if (nums[i]<=size){
    11                 res.push_back(i+1);
    12             }
    13         }
    14         return res;
    15     }
    16 };
  • 相关阅读:
    BZOJ1029:[JSOI2007]建筑抢修(贪心,堆)
    1054. [HAOI2008]移动玩具【BFS】
    1297. [SCOI2009]迷路【矩阵乘法】
    1192. [HNOI2006]鬼谷子的钱袋【进制】
    2243. [SDOI2011]染色【树链剖分】
    1051. [HAOI2006]受欢迎的牛【强连通分量】
    codevs 2074 营救 WW
    codevs 1191 数轴染色
    codevs 2855 游乐园的迷宫 bfs
    codevs 2806 红与黑
  • 原文地址:https://www.cnblogs.com/anghostcici/p/6664283.html
Copyright © 2011-2022 走看看