This commit is contained in:
Zengtudor 2024-09-15 18:26:39 +08:00
parent 194e80fe0d
commit 3b38ed3212
2 changed files with 20 additions and 1 deletions

View File

@ -0,0 +1,16 @@
#include <bitset>
#include<string>
#include<iostream>
const int MAX_N = 2e3+5;
std::string s1,s2;
std::bitset<MAX_N> dp[MAX_N];
int main(){
std::cin>>s1>>s2;
for(int i=1;i<=s1.size();i++){
for(int j=1;j<=s2.size();j++){
}
}
}

View File

@ -58,3 +58,6 @@ target("P2016")
target("oj1808")
add_files("20240915/1808/1808.cpp")
target("matchStr")
add_files("20240915/matchStr/*.cpp")