Skip to content

Commit 7d22545

Browse files
author
李钊
committed
✨ feat: backup answer
1 parent 31c5753 commit 7d22545

File tree

5 files changed

+150
-0
lines changed

5 files changed

+150
-0
lines changed

1074.cpp

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
#include <vector>
2+
#include <algorithm>
3+
#include <iostream>
4+
#include <unordered_map>
5+
6+
using namespace std;
7+
8+
class Solution
9+
{
10+
public:
11+
int numSubmatrixSumTarget(vector<vector<int>> &matrix, int target) {
12+
int m = matrix.size(), n = matrix[0].size(), ret = 0;
13+
vector<vector<int>> sum(m + 1, vector<int>(n + 1, 0));
14+
for (int i = 0; i < m; ++i) {
15+
for (int j = 0; j < n; ++j) {
16+
sum[i + 1][j + 1] = matrix[i][j] + sum[i + 1][j] + sum[i][j + 1] - sum[i][j];
17+
}
18+
}
19+
20+
unordered_map<int, int> hash;
21+
for (int i = 0; i < m; ++i) {
22+
for (int j = i + 1; j <= m; ++j) {
23+
hash.clear();
24+
hash.insert({0, 1});
25+
for (int k = 0; k < n; ++k) {
26+
int s = sum[j][k + 1] - sum[i][k + 1];
27+
ret += hash.find(s - target) == hash.end() ? 0 : hash[s - target];
28+
hash[s]++;
29+
}
30+
}
31+
}
32+
33+
return ret;
34+
}
35+
};

1310.cpp

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
#include <vector>
2+
#include <iostream>
3+
4+
using namespace std;
5+
6+
class Solution
7+
{
8+
public:
9+
vector<int> xorQueries(vector<int> &arr, vector<vector<int>> &queries) {
10+
int n = arr.size(), m = queries.size();
11+
vector<int> x(n + 1, 0), ret;
12+
13+
for (int i = 0; i < n; ++i) {
14+
x[i + 1] = x[i] ^ arr[i];
15+
}
16+
17+
for (int i = 0; i < m; ++i) {
18+
ret.push_back(x[queries[i][1] + 1] ^ x[queries[i][0]]);
19+
}
20+
21+
return ret;
22+
}
23+
};

370.cpp

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
#include <vector>
2+
#include <algorithm>
3+
#include <iostream>
4+
#include <unordered_map>
5+
6+
using namespace std;
7+
8+
class Solution
9+
{
10+
public:
11+
vector<int> getModifiedArray(int n, vector<vector<int>> &range) {
12+
vector<int> sum(n, 0);
13+
vector<int> diff(n + 1, 0);
14+
15+
for (auto i : range) {
16+
diff[i[0]] += i[2];
17+
diff[i[1] + 1] -= i[2];
18+
}
19+
20+
int acc = 0;
21+
for (int i = 0; i < n; ++i) {
22+
acc += diff[i];
23+
sum[i] = acc;
24+
}
25+
26+
return sum;
27+
}
28+
};
29+
30+
int main(int argc, char const *argv[]) {
31+
Solution s;
32+
vector<vector<int>> v = {{1, 3, 2}, {2, 4, 3}, {0, 2, -2}};
33+
s.getModifiedArray(5, v);
34+
return 0;
35+
}

560.cpp

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
#include <vector>
2+
#include <algorithm>
3+
#include <iostream>
4+
#include <unordered_map>
5+
6+
using namespace std;
7+
8+
class Solution
9+
{
10+
public:
11+
int subarraySum(vector<int> &nums, int k) {
12+
int n = nums.size(), sum = 0, ret = 0;
13+
unordered_map<int, int> hash = {{0, 1}};
14+
15+
for (int i = 0; i < n; ++i) {
16+
sum = sum + nums[i];
17+
ret += hash.find(sum - k) == hash.end() ? 0 : hash[sum - k];
18+
hash[sum]++;
19+
}
20+
21+
return ret;
22+
}
23+
};

README.md

+34
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
## Prefix Sum
1313

1414

15+
## Subarray Target Sum
16+
17+
See Problem 560, very useful.
1518

1619

1720
# C++ Weapons
@@ -26,3 +29,34 @@
2629
| Find string/characterin string | std::string.find | |
2730
| | | |
2831

32+
# Problem
33+
34+
## 370. Range Addition
35+
36+
37+
### Intuition
38+
39+
- The value in the result only changes at range boundaries
40+
- The left boundary will contribute +inc
41+
- The right boundary will contribute -inc
42+
43+
### Approach
44+
45+
1. Scan the ranges and calculate the contribution
46+
2. Scan the array and calculate the running sum
47+
48+
### Complexity
49+
50+
- Time complexity: $O(M+N)$
51+
- Space complexity: $O(N)$
52+
53+
54+
## 1310. XOR Queries of a Subarray
55+
56+
Simple prefix XOR;
57+
58+
## 1074. Number of Submatrices That Sum to Target
59+
60+
- 2D prefix sum & subarray sum to target problem
61+
- Time complexity $O(M^2N)$
62+

0 commit comments

Comments
 (0)