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
#include <iostream>
#include "message.h"

using namespace std;

void press(string input,int count,int szoki);
string cut(string from, int n);
string add(string from, char what, int n);
string change(string input,char towhat, int n);

string * beento;
int btsize=1000000;
int btcur=0;

int la,lb;

bool br=false;
string a,b;
int szoki,count;
int mins;

int maxrek = 1;

int main()
{

    cin>>la,lb;
    cin>>a;
    cin>>b;
    string help;
    count=0;
    szoki=0;

    beento = new string [btsize];

    for(int x=0;x>=0;x++)
    {
        mins=-1;
        //usuwanie
        if(la>lb)
        for(int i=MyNodeId();i<la;i+=NumberOfNodes())
            press(cut(a,i),count,szoki);
        //dodawanie
        if(la<lb)
        for(int ch=0;ch<=25;ch++)
            {
                for(int j=MyNodeId();j<la;j+=NumberOfNodes())
                    press(add(a,'a'+ch,j),count,szoki);
                if(MyNodeId()==NumberOfNodes()-1)
                    press(add(a,'a'+ch,-1),count,szoki);
            }
        //zamienianie
        if(la==lb)
        for(int ch=0;ch<=25;ch++)
            {
                for(int k=MyNodeId();k<la;k+=NumberOfNodes())
                    if(('a'+ch)>(a[k]))
                        press(change(a,'a'+ch,k),count,szoki+1);
                    else
                        press(change(a,'a'+ch,k),count,szoki);
            }

        if(br)
            break;
        else
            maxrek++;
    }
    PutInt(0,maxrek);
    PutInt(0,mins);
    Send(0);


    int k,s,mk,ms;
    mk=-1;
    ms=-1;
    if(MyNodeId()==0)
    {
        for(int y=0;y<NumberOfNodes();y++)
        {
            Receive(y);
            k=GetInt(y);
            s=GetInt(y);
            if((mk==-1)or(k<mk))
            {
                mk=k;
                ms=s;
            }
            else if(k==mk)
            {
                if(s<ms)
                    ms=s;
            }
        }

        cout<<mk<<" "<<ms;
    }
}

void press(string input,int count,int szoki)
{
    for(int r=0;r<btsize;r++)
        if(input==beento[r])
            return;
    if(btcur<=btsize-1)
    {
        beento[btcur]=input;
        btcur++;
    }
    count++;
    if(input==b)
    {
        br=true;
        if((mins==-1)or(szoki<mins))
            mins=szoki;

    }
    else if((count<=maxrek))
    {
        //usuwanie litery
        if(input.size()>lb)
        for(int i=0;i<input.size();i++)
            press(cut(input,i),count,szoki);
        //wstawianie litery
        if(input.size()<lb)
        for(int ch=0;ch<=25;ch++)
        {
            press(add(input,'a'+ch,-1),count,szoki);
            for(int j=0;j<input.size();j++)
                press(add(input,'a'+ch,j),count,szoki);
        }
        //zamienianie litery
        if(input.size()==lb)
        for(int ch=0;ch<=25;ch++)
        {
            for(int k=0;k<input.size();k++)
                if(('a'+ch)>(input[k]))
                    press(change(input,'a'+ch,k),count,szoki+1);
                else
                    press(change(input,'a'+ch,k),count,szoki);
        }
    }
}

string cut(string from, int n)
{
    from[n]='*';
    for(int i=n;i<from.size();i++)
        if(from[i]=='*')
        {
            if(i+1<from.size())
            {
                from[i]=from[i+1];
                from[i+1]='*';
            }
            else
                from.resize(from.size()-1);
        }
    return from;
}

string add(string from,char what,int n)
{
    string to="";
    if(n==-1)
        to=what+from;
    else
    {
        for(int i=0;i<from.size();i++)
        {
            to=to+from[i];
            if(i==n)
                to=to+what;
        }
    }
    return to;
}

string change(string input,char towhat, int n)
{
    input=cut(input,n);
    input=add(input,towhat,n-1);
    return input;
}