feat: problem partialy formatted
This commit is contained in:
0
longest-common-subsequence/src/TLE.cpp
Normal file
0
longest-common-subsequence/src/TLE.cpp
Normal file
25
longest-common-subsequence/src/ac.cpp
Normal file
25
longest-common-subsequence/src/ac.cpp
Normal file
@@ -0,0 +1,25 @@
|
||||
#include <bits/stdc++.h>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int memo[1011][1011];
|
||||
|
||||
int solve(string &s1, string &s2, int i = 0, int j = 0)
|
||||
{
|
||||
if (i == s1.size() || j == s2.size()) return 0;
|
||||
if (memo[i][j] != - 1) return memo[i][j];
|
||||
|
||||
if (s1[i] == s2[j]) {
|
||||
return memo[i][j] = (solve(s1, s2, i + 1, j + 1) + 1);
|
||||
}
|
||||
return memo[i][j] = max(solve(s1, s2, i, j + 1), solve(s1, s2, i + 1, j));
|
||||
}
|
||||
|
||||
int main(){
|
||||
string s1, s2; cin >> s1 >> s2;
|
||||
memset(memo, -1, sizeof(memo));
|
||||
|
||||
cout << solve(s1, s2) << endl;
|
||||
|
||||
return 0;
|
||||
}
|
||||
17
longest-common-subsequence/src/checker.cpp
Normal file
17
longest-common-subsequence/src/checker.cpp
Normal file
@@ -0,0 +1,17 @@
|
||||
#include "testlib.h"
|
||||
#include <bits/stdc++.h>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int main(int argc, char* argv[]) {
|
||||
setName("compare two signed int%d's", 8 * int(sizeof(int)));
|
||||
registerTestlibCmd(argc, argv);
|
||||
|
||||
int ja = ans.readInt();
|
||||
int pa = ouf.readInt();
|
||||
|
||||
if (ja != pa)
|
||||
quitf(_wa, "expected %d, found %d", ja, pa);
|
||||
|
||||
quitf(_ok, "all answers are correct");
|
||||
}
|
||||
82
longest-common-subsequence/src/generator.cpp
Normal file
82
longest-common-subsequence/src/generator.cpp
Normal file
@@ -0,0 +1,82 @@
|
||||
#include "testlib.h"
|
||||
#include <bits/stdc++.h>
|
||||
|
||||
using namespace std;
|
||||
|
||||
const int MIN_N = 1;
|
||||
const int MAX_N = 1000;
|
||||
|
||||
const int rnd_test_n = 100;
|
||||
|
||||
template <typename T> void append(vector<T> &dest, const vector<T> &orig) {
|
||||
dest.insert(dest.end(), orig.begin(), orig.end());
|
||||
}
|
||||
|
||||
string output_tc(const string &x, const string &y) {
|
||||
ostringstream oss;
|
||||
oss << x << " " << y << endl;
|
||||
return oss.str();
|
||||
}
|
||||
|
||||
vector<string> generate_sample_tests() {
|
||||
vector<string> tests;
|
||||
tests.push_back(output_tc("abcde", "ace"));
|
||||
tests.push_back(output_tc("abc", "abc"));
|
||||
tests.push_back(output_tc("abc", "hhh"));
|
||||
return tests;
|
||||
}
|
||||
|
||||
vector<string> generate_manual_tests() {
|
||||
vector<string> tests;
|
||||
return tests;
|
||||
}
|
||||
|
||||
string rnd_test(int i){
|
||||
int min_n = MIN_N;
|
||||
int max_n = MAX_N;
|
||||
|
||||
if(i<rnd_test_n / 3){
|
||||
max_n = 5;
|
||||
}
|
||||
else if(i<rnd_test_n / 2){
|
||||
max_n = 20;
|
||||
}
|
||||
int size1 = rnd.next(min_n, max_n);
|
||||
string x = rnd.next("[a-z]{" + to_string(size1) + "}");
|
||||
int size2 = rnd.next(min_n, max_n);
|
||||
string y = rnd.next("[a-z]{" + to_string(size2) + "}");
|
||||
return(output_tc(x, y));
|
||||
}
|
||||
|
||||
vector<string> generate_random_tests() {
|
||||
vector<string> tests;
|
||||
for (int i = 0; i < rnd_test_n; i++){
|
||||
tests.push_back(rnd_test(i));
|
||||
}
|
||||
return tests;
|
||||
}
|
||||
|
||||
string extreme_test_1(){
|
||||
return(output_tc(rnd.next("[a-z]{1000}"), rnd.next("[a-z]{1000}")));
|
||||
}
|
||||
|
||||
vector<string> generate_extreme_tests(){
|
||||
vector<string> tests;
|
||||
tests.push_back(extreme_test_1());
|
||||
return tests;
|
||||
}
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
registerGen(argc, argv, 1);
|
||||
vector<string> tests;
|
||||
size_t test = 0;
|
||||
append(tests, generate_sample_tests());
|
||||
append(tests, generate_manual_tests());
|
||||
append(tests, generate_random_tests());
|
||||
append(tests, generate_extreme_tests());
|
||||
for (const auto &t : tests) {
|
||||
startTest(++test);
|
||||
cout << t;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
1
longest-common-subsequence/src/script.sh
Normal file
1
longest-common-subsequence/src/script.sh
Normal file
@@ -0,0 +1 @@
|
||||
generator
|
||||
5963
longest-common-subsequence/src/testlib.h
Normal file
5963
longest-common-subsequence/src/testlib.h
Normal file
File diff suppressed because it is too large
Load Diff
15
longest-common-subsequence/src/validator.cpp
Normal file
15
longest-common-subsequence/src/validator.cpp
Normal file
@@ -0,0 +1,15 @@
|
||||
#include "testlib.h"
|
||||
#include <bits/stdc++.h>
|
||||
|
||||
using namespace std;
|
||||
|
||||
|
||||
int main(int argc, char* argv[]) {
|
||||
registerValidation(argc, argv);
|
||||
inf.readToken("[a-z]{1, 1000}", "s1");
|
||||
inf.readSpace();
|
||||
inf.readToken("[a-z]{1, 1000}", "s2");
|
||||
inf.readEoln();
|
||||
inf.readEof();
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user