Pagini recente » Rating Deaconu Adrian (Cryston) | Cod sursa (job #3004773) | Cod sursa (job #811222) | Cod sursa (job #933560) | Cod sursa (job #3286120)
#include <fstream>
#include <vector>
using namespace std;
ifstream fin("cmlsc.in");
ofstream fout("cmlsc.out");
const int nmax = 1024;
int a[nmax + 5], b[nmax + 5], dp[nmax + 5][nmax + 4];
int main()
{
int n, m;
fin >> n >> m;
int i, j;
for ( i = 1; i <= n; ++i )
fin >> a[i];
for ( j = 1; j <= m; ++j )
fin >> b[j];
fout << "adssad\n";
return 0;
}