// applying algo from https://www.sciencedirect.com/science/article/pii/S0166218X07002727#fig8 #include <cstdio> #include <iostream> #include <algorithm> #include <cstring> #include <vector> #include <set> #include <map> #include <array> #include <random> #include <cmath> #include <list> #include <ctime> #include <sstream> #include <queue> #include <climits> #include <stack> #include <random> #include <bitset> #include <numeric> #include <cstdlib> #include <cassert> using namespace std; typedef vector<int> vi; typedef pair<int,int> pii; typedef long long ll; #define rep(x, b, e) for(int x=(b); x<(e); ++x) #define trav(a, x) for(auto& a : x) #define ford(x, b, e) for(int x=((int)(b))-1; x>=(e); --x) #define all(c) c.begin(),c.end() #define sz(x) ((int)((x).size())) #define pb push_back #define st first #define nd second #define mp(x,y) make_pair(x,y) typedef short int sint; #define imie(...) " [" << #__VA_ARGS__ ": " << (__VA_ARGS__) << "] " #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> using namespace __gnu_pbds; template<class T> using Tree = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>; // struct Tree2 { // vector<int> v; // void insert(int val) { // v.pb(val); // sort(all(v)); // } // int begin() { // return v[0]; // } // void erase(int val) { // vi nowy; // trav(x, v) { // if (x != val) { // nowy.pb(x); // } // } // v = nowy; // } // int order_of_key(int val) { // int wsk = 0; // while (wsk < sz(v) && v[wsk] <= val) { // ++wsk; // } // return wsk - 1; // } // void print() { // trav(x, v) { // printf("%d ", x); // } // printf("\n"); // } // }; const int N = 3003; const int Q = 120300; vector<pair<pii, pii>> queries; map<int, map<int, vi>> atIndex[N]; int res[Q]; pair<vi, vi> computeDAndV(const vi& ih, int na, int nb) { vi Dg; vi Vg(nb + 1, INT_MAX); Dg.pb(0); // int idx = 1; rep(j, 1, nb + 1) { if (ih[j] == 0) { Dg.pb(j); } else { Vg[ih[j]] = j; } } return mp(Dg, Vg); } void compute(const string& a, const string& b, int kt) { // printf("\n"); // cout << "computing for: " << kt << " [" << a << "] and [" << b << "]\n"; int na = sz(a), nb = sz(b); vector<vi> ih(na + 1, vi(nb + 1)); vector<vi> iv(na + 1, vi(nb + 1)); rep(j, 0, nb + 1) { ih[0][j] = j; } rep(l, 0, na + 1) { iv[l][0] = 0; } rep(l, 1, na + 1) { rep(j, 1, nb + 1) { if (a[l - 1] != b[j - 1]) { ih[l][j] = max(iv[l][j-1], ih[l-1][j]); iv[l][j] = min(iv[l][j-1], ih[l-1][j]); } else { ih[l][j] = iv[l][j-1]; iv[l][j] = ih[l-1][j]; } } auto qs = atIndex[kt][kt + l - 1]; if (qs.empty()) { // printf("atIndex[%d][%d] is empty\n", kt, kt +l - 1); continue; } // printf("\twill answer queries in row: %d\n", l); auto pom = computeDAndV(ih[l], l, nb); // Tree<int> t; Tree<int> t; // Tree2 t2; vi DG = pom.st, Vg = pom.nd; trav(d, DG) { t.insert(d); // t2.insert(d); } // rep(qq, 0, sz(Vg)) { // printf("\t\tVg[%d] = %d\n", qq, Vg[qq]); // } rep(j, 1, nb + 1) { // printf("\taktualne dla B[%d; ]: ", j); t2.print(); trav(pyt, qs[j]) { int oKtory = queries[pyt].nd.nd; res[pyt] = t.order_of_key(oKtory + 1) - 1; // printf("t1: %d, t2: %d\n", res[pyt], t2.order_of_key(oKtory)); // printf("\t\todpowiedz pyt nr: %d, dla: %d = %d\n", pyt, oKtory, res[pyt]); } auto fir = t.begin(); // auto fir2 = t2.begin(); t.erase(fir); // t2.erase(fir2); if (Vg[j] != INT_MAX) { t.insert(Vg[j]); // t2.insert(Vg[j]); } } } } int main() { ios_base::sync_with_stdio(false); cin.tie(0); int na, nb, q; cin >> na >> nb >> q; string a, b; cin >> a >> b; queries.resize(q); set<int> st[2]; rep(i, 0, q) { cin >> queries[i].st.st >> queries[i].st.nd >> queries[i].nd.st >> queries[i].nd.nd; st[0].insert(queries[i].st.st); st[1].insert(queries[i].nd.st); // scanf("%d %d %d %d", &queries[i].st.st, &queries[i].st.nd, &queries[i].nd.st, &queries[i].nd.nd); // cout << "dodalem na: atIndex[" << queries[i].st.st << "][" << queries[i].st.nd << "][" << queries[i].nd.st << "] + " << i << endl; atIndex[queries[i].st.st][queries[i].st.nd][queries[i].nd.st].pb(i); } if (sz(st[0]) > sz(st[1])) { swap(a, b); rep(i, 0, q) { swap(queries[i].st, queries[i].nd); } } rep(i, 1, sz(a) + 1) { if (atIndex[i].empty()) { // printf("omijam: %d\n", i); continue; } string noweA = a.substr(i-1); compute(noweA, b, i); } rep(i, 0, q) { cout << res[i] << endl; // printf("%d\n", res[i]); } }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 | // applying algo from https://www.sciencedirect.com/science/article/pii/S0166218X07002727#fig8 #include <cstdio> #include <iostream> #include <algorithm> #include <cstring> #include <vector> #include <set> #include <map> #include <array> #include <random> #include <cmath> #include <list> #include <ctime> #include <sstream> #include <queue> #include <climits> #include <stack> #include <random> #include <bitset> #include <numeric> #include <cstdlib> #include <cassert> using namespace std; typedef vector<int> vi; typedef pair<int,int> pii; typedef long long ll; #define rep(x, b, e) for(int x=(b); x<(e); ++x) #define trav(a, x) for(auto& a : x) #define ford(x, b, e) for(int x=((int)(b))-1; x>=(e); --x) #define all(c) c.begin(),c.end() #define sz(x) ((int)((x).size())) #define pb push_back #define st first #define nd second #define mp(x,y) make_pair(x,y) typedef short int sint; #define imie(...) " [" << #__VA_ARGS__ ": " << (__VA_ARGS__) << "] " #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> using namespace __gnu_pbds; template<class T> using Tree = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>; // struct Tree2 { // vector<int> v; // void insert(int val) { // v.pb(val); // sort(all(v)); // } // int begin() { // return v[0]; // } // void erase(int val) { // vi nowy; // trav(x, v) { // if (x != val) { // nowy.pb(x); // } // } // v = nowy; // } // int order_of_key(int val) { // int wsk = 0; // while (wsk < sz(v) && v[wsk] <= val) { // ++wsk; // } // return wsk - 1; // } // void print() { // trav(x, v) { // printf("%d ", x); // } // printf("\n"); // } // }; const int N = 3003; const int Q = 120300; vector<pair<pii, pii>> queries; map<int, map<int, vi>> atIndex[N]; int res[Q]; pair<vi, vi> computeDAndV(const vi& ih, int na, int nb) { vi Dg; vi Vg(nb + 1, INT_MAX); Dg.pb(0); // int idx = 1; rep(j, 1, nb + 1) { if (ih[j] == 0) { Dg.pb(j); } else { Vg[ih[j]] = j; } } return mp(Dg, Vg); } void compute(const string& a, const string& b, int kt) { // printf("\n"); // cout << "computing for: " << kt << " [" << a << "] and [" << b << "]\n"; int na = sz(a), nb = sz(b); vector<vi> ih(na + 1, vi(nb + 1)); vector<vi> iv(na + 1, vi(nb + 1)); rep(j, 0, nb + 1) { ih[0][j] = j; } rep(l, 0, na + 1) { iv[l][0] = 0; } rep(l, 1, na + 1) { rep(j, 1, nb + 1) { if (a[l - 1] != b[j - 1]) { ih[l][j] = max(iv[l][j-1], ih[l-1][j]); iv[l][j] = min(iv[l][j-1], ih[l-1][j]); } else { ih[l][j] = iv[l][j-1]; iv[l][j] = ih[l-1][j]; } } auto qs = atIndex[kt][kt + l - 1]; if (qs.empty()) { // printf("atIndex[%d][%d] is empty\n", kt, kt +l - 1); continue; } // printf("\twill answer queries in row: %d\n", l); auto pom = computeDAndV(ih[l], l, nb); // Tree<int> t; Tree<int> t; // Tree2 t2; vi DG = pom.st, Vg = pom.nd; trav(d, DG) { t.insert(d); // t2.insert(d); } // rep(qq, 0, sz(Vg)) { // printf("\t\tVg[%d] = %d\n", qq, Vg[qq]); // } rep(j, 1, nb + 1) { // printf("\taktualne dla B[%d; ]: ", j); t2.print(); trav(pyt, qs[j]) { int oKtory = queries[pyt].nd.nd; res[pyt] = t.order_of_key(oKtory + 1) - 1; // printf("t1: %d, t2: %d\n", res[pyt], t2.order_of_key(oKtory)); // printf("\t\todpowiedz pyt nr: %d, dla: %d = %d\n", pyt, oKtory, res[pyt]); } auto fir = t.begin(); // auto fir2 = t2.begin(); t.erase(fir); // t2.erase(fir2); if (Vg[j] != INT_MAX) { t.insert(Vg[j]); // t2.insert(Vg[j]); } } } } int main() { ios_base::sync_with_stdio(false); cin.tie(0); int na, nb, q; cin >> na >> nb >> q; string a, b; cin >> a >> b; queries.resize(q); set<int> st[2]; rep(i, 0, q) { cin >> queries[i].st.st >> queries[i].st.nd >> queries[i].nd.st >> queries[i].nd.nd; st[0].insert(queries[i].st.st); st[1].insert(queries[i].nd.st); // scanf("%d %d %d %d", &queries[i].st.st, &queries[i].st.nd, &queries[i].nd.st, &queries[i].nd.nd); // cout << "dodalem na: atIndex[" << queries[i].st.st << "][" << queries[i].st.nd << "][" << queries[i].nd.st << "] + " << i << endl; atIndex[queries[i].st.st][queries[i].st.nd][queries[i].nd.st].pb(i); } if (sz(st[0]) > sz(st[1])) { swap(a, b); rep(i, 0, q) { swap(queries[i].st, queries[i].nd); } } rep(i, 1, sz(a) + 1) { if (atIndex[i].empty()) { // printf("omijam: %d\n", i); continue; } string noweA = a.substr(i-1); compute(noweA, b, i); } rep(i, 0, q) { cout << res[i] << endl; // printf("%d\n", res[i]); } } |