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
#include <bits/stdc++.h>
using namespace std;

int main() {
    ios::sync_with_stdio(0);
    cin.tie(0);
    int n, m, q;
    cin >> n >> m >> q;
    char A[3100], B[3100];
    cin >> A >> B;
    int V[m+1];
    while (q--) {
        int a[2], b[2];
        cin >> a[0] >> a[1] >> b[0] >> b[1];
        for (int j=b[0]-1; j<=b[1]; j++) V[j]=0;
        for (int i=a[0]-1; i<a[1]; i++) {
            char a=A[i];
            int temp=0;
            
            
            for (int j=b[0]-1; j<b[1]; j++) {
                if (a==B[j]) {
                    swap(++temp, V[j+1]);
                } else {
                    swap(temp=max(V[j+1], V[j]), V[j+1]);
                }
            }
        }
        cout << V[b[1]] << endl;
    }
    return 0;
}