Skip to content

Commit 3d21c9a

Browse files
committed
add new
1 parent 32de0ef commit 3d21c9a

21 files changed

+897
-1
lines changed

.vscode/settings.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -64,5 +64,6 @@
6464
"utility": "cpp",
6565
"vector": "cpp",
6666
"list": "cpp"
67-
}
67+
},
68+
"C_Cpp.errorSquiggles": "enabled"
6869
}

a.out

44.7 KB
Binary file not shown.

closedIsland_1254.cpp

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
#include<vector>
2+
#include<iostream>
3+
4+
using namespace std;
5+
6+
class Solution {
7+
public:
8+
void bfs(vector<vector<int>>& grid, int i, int j, bool& isVaild){
9+
visited[i][j] = true;
10+
for(int index = 0; index < 4; ++index){
11+
if(i + neighbor[index][0] >= row || i + neighbor[index][0] < 0){
12+
isVaild = false;
13+
continue;
14+
}
15+
16+
if(j + neighbor[index][1] >= col || j + neighbor[index][1] < 0){
17+
isVaild = false;
18+
continue;
19+
}
20+
21+
int tmpI = i + neighbor[index][0], tmpJ = j + neighbor[index][1];
22+
if(grid[tmpI][tmpJ] == 0 && !visited[tmpI][tmpJ])
23+
bfs(grid, tmpI, tmpJ, isVaild);
24+
}
25+
}
26+
27+
int closedIsland(vector<vector<int>>& grid) {
28+
row = grid.size(), col = grid[0].size();
29+
visited.resize(row, vector<bool>(col, false));
30+
res = 0;
31+
for(int i = 0; i < row; ++i){
32+
for(int j = 0; j < col; ++j){
33+
if(!visited[i][j] && grid[i][j] == 0){
34+
bool isVaild = true;
35+
bfs(grid, i, j, isVaild);
36+
if(isVaild)
37+
res++;
38+
}
39+
}
40+
}
41+
42+
return res;
43+
}
44+
45+
private:
46+
int row;
47+
int col;
48+
int res;
49+
vector<vector<bool>> visited;
50+
vector<vector<int>> neighbor = {{1, 0}, {-1, 0}, {0, -1}, {0, 1}};
51+
};
52+
53+
int main(){
54+
55+
Solution s;
56+
vector<vector<int>> grid = {{1,1,1,1,1,1,1,0},{1,0,0,0,0,1,1,0},{1,0,1,0,1,1,1,0},{1,0,0,0,0,1,0,1},{1,1,1,1,1,1,1,0}};
57+
cout << s.closedIsland(grid) << endl;
58+
return 0;
59+
}

countPalindromicSubsequences_730.cpp

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
#include<string>
2+
#include<iostream>
3+
#include<vector>
4+
using namespace std;
5+
6+
class Solution {
7+
public:
8+
const int MOD = 1e9 + 7;
9+
int countPalindromicSubsequences(string s) {
10+
// 先求回文子串
11+
int n = s.size();
12+
vector<vector<vector<int>>> dp(4, vector<vector<int>>(n, vector<int>(n, 0)));
13+
for(int i = 0; i < n; ++i){
14+
dp[s[i] - 'a'][i][i] = 1;
15+
}
16+
17+
for(int len = 2; len <= n; ++len){
18+
for(int i = 0; i <= n - len; ++i){
19+
int j = i + len - 1;
20+
for(int x = 0; x < 4; ++x){
21+
char c = 'a' + x;
22+
if(s[i] == c && s[i] == s[j]){
23+
dp[x][i][j] = (2LL + dp[0][i+1][j-1] + dp[1][i+1][j-1] + dp[2][i+1][j-1] +
24+
dp[3][i+1][j-1]) % MOD;
25+
}else if(s[i] == c && s[j] != c){
26+
dp[x][i][j] = dp[x][i][j-1];
27+
dp[x][i][j] %= MOD;
28+
}else if(s[i] != c && s[j] == c){
29+
dp[x][i][j] = dp[x][i+1][j];
30+
dp[x][i][j] %= MOD;
31+
}else if(s[i] != c && s[j] != c){
32+
dp[x][i][j] = dp[x][i+1][j-1];
33+
dp[x][i][j] %= MOD;
34+
}
35+
}
36+
}
37+
}
38+
39+
int res = 0;
40+
for(int i = 0; i < 4; ++i){
41+
res += dp[i][0][n-1];
42+
res %= MOD;
43+
}
44+
return res;
45+
}
46+
};
47+
48+
int main(){
49+
50+
return 0;
51+
}

countSubstrings_1638.cpp

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
#include<string>
2+
#include<vector>
3+
#include<iostream>
4+
5+
using namespace std;
6+
7+
class Solution {
8+
public:
9+
int countSubstrings(string s, string t) {
10+
// 关键点在于找到 s[i] 不等于 t[j]时
11+
//dpl[i][j] 以 s[i] s[j] 为终点的左边最长相等序列 以及 右边最长相等序列 dpr[i][j]
12+
int n = s.size(), m = t.size();
13+
vector<vector<int>> dpl(n + 1, vector<int>(m + 1, 0)), dpr(n + 1, vector<int>(m + 1, 0));
14+
for(int i = 0; i < n; ++i){
15+
for(int j = 0; j < m; ++j){
16+
dpl[i+1][j+1] = s[i] == t[j] ? dpl[i-1][j-1] + 1 : 0;
17+
}
18+
}
19+
20+
for(int i = n - 1; i >= 0; --i){
21+
for(int j = m - 1; j >= 0; --j){
22+
dpr[i][j] = s[i] == t[j] ? dpr[i+1][j+1] + 1 : 0;
23+
}
24+
}
25+
26+
int res = 0;
27+
for(int i = 0; i < n; ++i){
28+
for(int j = 0; j < m; ++j){
29+
if(s[i] != t[j]){
30+
res += (dpl[i][j] + 1) * (dpr[i+1][j+1] +1);
31+
}
32+
}
33+
}
34+
return res;
35+
}
36+
};
37+
38+
int main(){
39+
40+
return 0;
41+
}

findMedianSortedArrays_4.cpp

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
#include<vector>
2+
#include<iostream>
3+
4+
using namespace std;
5+
6+
// k 为在现有范围内的第 k 个数
7+
double getKth(vector<int>& nums1, int start1, int end1, vector<int>& nums2, int start2, int end2, int k){
8+
if(start1 > end1){
9+
return nums2[start2 + k - 1];
10+
}
11+
if(start2 > end2){
12+
return nums1[start1 + k - 1];
13+
}
14+
15+
if(k == 1){
16+
return nums1[start1] < nums2[start2] ? nums1[start1] : nums2[start2];
17+
}
18+
int tmp = k / 2;
19+
int index1 = start1 + tmp - 1;
20+
int index2 = start2 + tmp - 1;
21+
index1 = index1 < end1 ? index1 : end1;
22+
index2 = index2 < end2 ? index2 : end2;
23+
24+
if(nums1[index1] < nums2[index2]){
25+
return getKth(nums1, index1 + 1, end1, nums2, start2, end2, k - (index1 - start1 + 1));
26+
}else{
27+
return getKth(nums1, start1, end1, nums2, index2 + 1, end2, k - (index2 - start2 + 1));
28+
}
29+
}
30+
double findMedianSortedArrays(vector<int>& nums1, vector<int>& nums2) {
31+
int m = nums1.size(), n = nums2.size();
32+
int left = (m + n + 1) / 2; // 如果为偶数,left 即为中位数的第 k th, right = k + 1 th
33+
int right = (m + n + 2) / 2;
34+
35+
return (getKth(nums1, 0, m - 1, nums2, 0, n - 1, left) + getKth(nums1, 0, m - 1, nums2, 0, n - 1, right)) * 0.5;
36+
}
37+
38+
int main(){
39+
vector<int> vec1{1,2,3,4,5};
40+
vector<int> vec2{1,1,3,4,5};
41+
double res = findMedianSortedArrays(vec1, vec2);
42+
return 0;
43+
}

getPermutation_60.cpp

+67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
#include<string>
2+
#include<iostream>
3+
#include<vector>
4+
using namespace std;
5+
6+
class Solution {
7+
public:
8+
9+
bool dfs(string& tmp){
10+
11+
if(tmp.size() == n){
12+
//cout << "tmp " << tmp << endl;
13+
if(k == 1){
14+
res = tmp;
15+
return true;
16+
}else{
17+
k--;
18+
}
19+
}
20+
21+
for(int i = 0; i < n; ++i){
22+
if(visited[i])
23+
continue;
24+
tmp.push_back('1' + i);
25+
visited[i] = true;
26+
if(dfs(tmp))
27+
return true;
28+
tmp.pop_back();
29+
visited[i] = false;
30+
}
31+
32+
return false;
33+
}
34+
35+
int jiecheng(int x){
36+
if(x == 0 || x == 1){
37+
return 1;
38+
}
39+
40+
return x * jiecheng(x-1);
41+
}
42+
43+
string getPermutation(int n, int k) {
44+
// 从 i 开始的排序数有 m 个, k/m 即为只需遍历从 k/m 开始的排序
45+
int m = jiecheng(n-1);
46+
int start = k/m;
47+
this->n = n;
48+
this->k = k % (m+1);
49+
visited.resize(n, false);
50+
visited[start] = true;
51+
string tmp;
52+
tmp.push_back('1' + start);
53+
dfs(tmp);
54+
return res;
55+
}
56+
57+
private:
58+
vector<bool> visited;
59+
int n;
60+
int k;
61+
string res;
62+
};
63+
64+
int main(){
65+
66+
return 0;
67+
}

groupAnagrams_49.cpp

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
#include<vector>
2+
#include<iostream>
3+
#include<string>
4+
#include<unordered_map>
5+
using namespace std;
6+
7+
vector<vector<string>> groupAnagrams(vector<string>& strs) {
8+
vector<vector<string>> res;
9+
unordered_map<string, vector<string>> hash;
10+
for(int i = 0; i < strs.size(); ++i){
11+
string tmp = strs[i];
12+
sort(tmp.begin(), tmp.end());
13+
if(hash.count(tmp)){
14+
hash[tmp].push_back(strs[i]);
15+
}else{
16+
hash.insert(pair<string, vector<string>>(tmp, vector<string>()));
17+
//hash.emplace((tmp, vector<string>()));
18+
hash[tmp].push_back(strs[i]);
19+
}
20+
}
21+
22+
for(auto ite : hash){
23+
res.emplace_back(std::move(ite.second));
24+
}
25+
26+
return res;
27+
}
28+
29+
int main(){
30+
31+
vector<int> vec {2,1,3,4};
32+
sort(vec.begin(), vec.end(), std::less<int>());
33+
return 0;
34+
}

invalidTransactions_1169.cpp

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
#include<string>
2+
#include<vector>
3+
#include<iostream>
4+
#include<unordered_map>
5+
using namespace std;
6+
class Solution {
7+
public:
8+
9+
void dealString(const string& str, vector<string>& tmp){
10+
int start = 0;
11+
for(int i = 0; i < 3; ++i){
12+
int end = str.find(',', start);
13+
tmp.push_back(str.substr(start, end - start));
14+
start = end + 1;
15+
}
16+
tmp.push_back(str.substr(start, str.size() - start));
17+
//tmp.push_back(str);
18+
}
19+
vector<string> invalidTransactions(vector<string>& transactions) {
20+
vector<string> res;
21+
unordered_multimap<string, vector<string>> hash;
22+
unordered_set<int> repeated_res;
23+
for(int i = 0; i < transactions.size(); ++i){
24+
vector<string> tmp;
25+
dealString(transactions[i], tmp);
26+
if(atoi(tmp[2].c_str()) > 1000){
27+
repeated_res.insert(i);
28+
res.push_back(transactions[i]);
29+
}
30+
31+
auto range = hash.equal_range(tmp[0]); //hash.find(tmp[0]);
32+
for(auto ite = range.first; ite != range.second; ++ite){
33+
if(ite->second[3] != tmp[3] && abs(atoi(ite->second[1].c_str()) - atoi(tmp[1].c_str())) <= 60){
34+
if(repeated_res.find(i) == repeated_res.end()){
35+
res.push_back(transactions[i]);
36+
repeated_res.insert(i);
37+
}
38+
int tmp_index = atoi(ite->second[4].c_str());
39+
cout << "tmp_index " << tmp_index << "ite: " << ite->second[3] << endl;
40+
if(repeated_res.find(tmp_index) == repeated_res.end()){
41+
res.push_back(transactions[tmp_index]);
42+
repeated_res.insert(tmp_index);
43+
}
44+
45+
46+
}
47+
}
48+
49+
tmp.push_back(to_string(i));
50+
hash.insert(make_pair(tmp[0], tmp));
51+
}
52+
53+
return res;
54+
}
55+
56+
};

0 commit comments

Comments
 (0)