update
This commit is contained in:
parent
194e80fe0d
commit
3b38ed3212
16
20240915/matchStr/matchStr.cpp
Normal file
16
20240915/matchStr/matchStr.cpp
Normal 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++){
|
||||
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user