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
#include <iostream>
#include <vector>
#include <algorithm>
#include <utility>
#include <set>
#include <functional>
#include <random>
#include <stack>
#include <map>
#include <string>


#include "message.h"


using namespace std;


class koszt
{
public:
    int uderzen;
    int szokow;
    bool operator < (const koszt &oth ) const
    {
        return ( uderzen<oth.uderzen ) || (  ( uderzen==oth.uderzen ) && ( szokow<oth.szokow) );
     }
    koszt(): uderzen(0),szokow(0){}
    koszt(int ud): uderzen(ud),szokow(0){}
    koszt(int ud, int sz): uderzen(ud),szokow(sz){}
    koszt operator + (const koszt &oth ) const
    {
        koszt wyn;
        wyn.uderzen = uderzen +  oth.uderzen;
        wyn.szokow = szokow + oth.szokow;
        return wyn;
    }
};

int main()
{

    cin.sync_with_stdio(false);

    int n,m;

    cin>>n>>m;

    string we, wy;

    cin>>we;
    cin>>wy;

     vector<koszt> now(m+1, koszt()), prev(m+1, koszt());

     vector<koszt> gora(n+1, koszt());


     int64_t NoN = NumberOfNodes();
     int64_t IDdd = MyNodeId();

     if (NoN > 10*m) NoN = m*10;

     int m_first=(IDdd* m)/NoN;
     int m_last=((IDdd+1)*m)/NoN;

     if (MyNodeId()<NoN)
     {
         for (int i=0;i<=m;i++)
         {
             //tabl[0][i]= koszt(i);
             prev[i]= koszt(i);
         }
         for (int i=0;i<=n;i++)
         {
             //tabl[0][i]= koszt(i);
             gora[i]= koszt(i);
         }

         // cout<<"bla"<<endl;
         int przedzialow = 900;
         int porcja = (n + przedzialow - 1) / przedzialow;
         if (porcja<10) porcja = 10;

         for (int ii=1;ii<=n;ii+=porcja)
         {
             int imax = min(ii+porcja-1,n);

             //  cout<<MyNodeId()<<" robi porcje "<< ii<<" " <<imax <<" na m predziale "<< m_first <<" "<< m_last<<endl;

             if (MyNodeId()>0)
             {
                 int skad =MyNodeId()-1;
                 Receive(skad);
                 for (int i=ii;i<=imax ;i++)//zaladuj porcje
                 {

                     int a, b;

                     a = GetInt(skad);
                     b=GetInt(skad);
                     gora[i]= koszt(a,b);
                 }
             }

             int dokad = MyNodeId()+1;

             for (int i=ii;i<=imax ;i++)
             {
                 now[m_first]= gora[i];

                 for(int j=m_first+1;j<=m_last;j++)
                 {
                     koszt k = min( prev[j]+koszt(1,0) , now[j-1]+koszt(1,0) ) ;
                     k = min (k, prev[j-1]+ koszt ((we[i-1]!=wy[j-1])?1:0, (we[i-1]<wy[j-1])?1:0 ) );
                     now[j]=k;
                 }
                 if (dokad < NoN)
                 {
                     PutInt(dokad,now[m_last].uderzen);
                     PutInt(dokad,now[m_last].szokow);
                 }
                 swap(now, prev);
             }
             if (dokad < NoN)
             {
                 Send(dokad);
             }

         }
         if (MyNodeId() == NoN-1)
             cout<<prev[m].uderzen<<" "<<prev[m].szokow<<endl;
     }

     return 0;

}