-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path06_Find_Missing_and_Repeated_Values.cpp
73 lines (58 loc) · 2.35 KB
/
06_Find_Missing_and_Repeated_Values.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
// 2965. Find Missing and Repeated Values
// You are given a 0-indexed 2D integer matrix grid of size n * n with values in the range [1, n2]. Each integer appears exactly once except a which appears twice and b which is missing. The task is to find the repeating and missing numbers a and b.
// Return a 0-indexed integer array ans of size 2 where ans[0] equals to a and ans[1] equals to b.
// Example 1:
// Input: grid = [[1,3],[2,2]]
// Output: [2,4]
// Explanation: Number 2 is repeated and number 4 is missing so the answer is [2,4].
// Example 2:
// Input: grid = [[9,1,7],[8,9,2],[3,4,6]]
// Output: [9,5]
// Explanation: Number 9 is repeated and number 5 is missing so the answer is [9,5].
// Constraints:
// 2 <= n == grid.length == grid[i].length <= 50
// 1 <= grid[i][j] <= n * n
// For all x that 1 <= x <= n * n there is exactly one x that is not equal to any of the grid members.
// For all x that 1 <= x <= n * n there is exactly one x that is equal to exactly two of the grid members.
// For all x that 1 <= x <= n * n except two of them there is exatly one pair of i, j that 0 <= i, j <= n - 1 and grid[i][j] == x.
class Solution
{
public:
vector<int> findMissingAndRepeatedValues(vector<vector<int>> &grid)
{
int n = grid.size();
int size = n * n;
vector<int> count(size + 1, 0);
for (int i = 0; i < n; i++)
{
for (int j = 0; j < n; j++)
{
count[grid[i][j]]++;
}
}
int a = -1, b = -1;
for (int num = 1; num <= size; num++)
{
if (count[num] == 2)
{
a = num;
}
else if (count[num] == 0)
{
b = num;
}
}
return {a, b};
}
};
/*
This code solves the problem of finding a repeated and missing number in a n x n grid:
1. First it gets the grid size n and calculates total elements size = n*n
2. Creates a count array of size+1 initialized with zeros to store frequency of each number
3. Uses nested loops to count frequency of each number in the grid
4. Iterates through numbers 1 to size:
- If count[num] = 2, that's the repeated number (a)
- If count[num] = 0, that's the missing number (b)
5. Returns array containing repeated number a and missing number b
The time complexity is O(n^2) and space complexity is O(n^2)
*/