#define PROBLEM "http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=ALDS1_10_C" #include <iostream> #include <string> #include "Mylib/IO/input_tuples.cpp" #include "Mylib/String/longest_common_subsequence.cpp" namespace hl = haar_lib; int main() { int q; std::cin >> q; for (auto [x, y] : hl::input_tuples<std::string, std::string>(q)) { std::cout << hl::lcs(x, y) << std::endl; } return 0; }
#line 1 "test/aoj/ALDS1_10_C/main.test.cpp" #define PROBLEM "http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=ALDS1_10_C" #include <iostream> #include <string> #line 2 "Mylib/IO/input_tuples.cpp" #include <initializer_list> #line 4 "Mylib/IO/input_tuples.cpp" #include <tuple> #include <utility> #include <vector> #line 6 "Mylib/IO/input_tuple.cpp" namespace haar_lib { template <typename T, size_t... I> static void input_tuple_helper(std::istream &s, T &val, std::index_sequence<I...>) { (void) std::initializer_list<int>{(void(s >> std::get<I>(val)), 0)...}; } template <typename T, typename U> std::istream &operator>>(std::istream &s, std::pair<T, U> &value) { s >> value.first >> value.second; return s; } template <typename... Args> std::istream &operator>>(std::istream &s, std::tuple<Args...> &value) { input_tuple_helper(s, value, std::make_index_sequence<sizeof...(Args)>()); return s; } } // namespace haar_lib #line 8 "Mylib/IO/input_tuples.cpp" namespace haar_lib { template <typename... Args> class InputTuples { struct iter { using value_type = std::tuple<Args...>; value_type value; bool fetched = false; int N, c = 0; value_type operator*() { if (not fetched) { std::cin >> value; } return value; } void operator++() { ++c; fetched = false; } bool operator!=(iter &) const { return c < N; } iter(int N) : N(N) {} }; int N; public: InputTuples(int N) : N(N) {} iter begin() const { return iter(N); } iter end() const { return iter(N); } }; template <typename... Args> auto input_tuples(int N) { return InputTuples<Args...>(N); } } // namespace haar_lib #line 2 "Mylib/String/longest_common_subsequence.cpp" #include <algorithm> #line 4 "Mylib/String/longest_common_subsequence.cpp" namespace haar_lib { template <typename Container> int lcs(const Container &a, const Container &b) { const int n = a.size(), m = b.size(); std::vector<std::vector<int>> dp(n + 1, std::vector<int>(m + 1, 0)); for (int i = 1; i <= n; ++i) { for (int j = 1; j <= m; ++j) { dp[i][j] = a[i - 1] == b[j - 1] ? dp[i - 1][j - 1] + 1 : std::max(dp[i - 1][j], dp[i][j - 1]); } } return dp[n][m]; } } // namespace haar_lib #line 7 "test/aoj/ALDS1_10_C/main.test.cpp" namespace hl = haar_lib; int main() { int q; std::cin >> q; for (auto [x, y] : hl::input_tuples<std::string, std::string>(q)) { std::cout << hl::lcs(x, y) << std::endl; } return 0; }