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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
#include <cstdlib>
#include <iostream>
#include <vector>
#include <limits>
#include <algorithm>


#include "krazki.h"
#include "message.h"

using namespace std;


/*int NumberOfNodes()
{
    return 11;
}*/

void wczytaj_dziura(vector<int64_t> & dz, int a, int b)
{
    dz.clear();
    //dz.push_back(0);
    for (int64_t i= a; i<=b;i++ )
        dz.push_back(HoleDiameter(i));
    //dz.push_back(0); // podłoga
}

void wczytaj_klocek(vector<int64_t> & kl, int a, int b)
{
    kl.clear();
    //dz.push_back(0);
    for (int64_t i= a; i<=b;i++ )
        kl.push_back(DiscDiameter(i));
}

int przejdz(vector<int64_t> &  dz,vector<int64_t> &  kl) //ile sie wglebia
{
    int id = dz.size()-1;
    int ik = 0;
    while (id>=0 && ik < kl.size())
    {

        if (dz[id]>= kl [ik]){ // klocek sie miesci
            id--;
            ik++;
        }else{//klocek sie nie emisci
            id--;
        }
    }

    if(ik == kl.size()){ // cały klock sie zmiescil
        return ( id+1);
    }else
    {
        return ( ik - kl.size() );

    }


}

void rekordy(vector<int64_t> &  x)
{
    int64_t rekord = numeric_limits<int64_t>::max();
    for (int i=0; i<x.size();i++)
    {
        if (x[i]>rekord)
            x[i]=rekord;
        else
            rekord=x[i];
    }

}
void rekordy_kloc(vector<int64_t> &  x){
    int64_t rekord = -1;
    for (int i=0;i<x.size();i++)
    {
        if (x[i]<rekord)
            x[i]=rekord;
        else
            rekord=x[i];
    }

}

int64_t zbadaj_dziure(int node) //zwraca najwiekszy klocek
{
    int64_t a = (PipeHeight()* (int64_t)node)/NumberOfNodes() ;
    int64_t b = (PipeHeight()* (int64_t)(node+1))/NumberOfNodes() -1;

    a++;// indeksowane od jedynki;
    b++;

    vector<int64_t> dz;
    wczytaj_dziura(dz,a,b);
    rekordy(dz);

   // cout<<"instancja "<<node<<" zbadala D "<<a<<" "<<b<<" min   "<<dz.back()<<endl;

    return dz.back();
}


int64_t zbadaj_klocek(int node) //zwraca najwiekszy klocek
{
    int64_t a = (NumberOfDiscs()* (int64_t)node)/NumberOfNodes() ;
    int64_t b = (NumberOfDiscs()* (int64_t)(node+1))/NumberOfNodes() -1;


    a++;//klocki indeksowane od jedynki;
    b++;

    vector<int64_t> kl;
    wczytaj_klocek(kl,a,b);
    rekordy_kloc(kl);

 //   cout<<"instancja "<<node<<" zbadala "<<a<<" "<<b<<" max_klocek "<<
   //       ((!kl.empty())? kl.back():-1  )<<endl;

    return (!kl.empty())? kl.back():1 ;
    //return kl.back();
}
/*
void klocek_zablokowany_na( int klocek, int ind_dz )
{
    int ak = (NumberOfDiscs()* (int64_t)klocek)/NumberOfNodes() ;
    int bk = (NumberOfDiscs()* (int64_t)(klocek+1))/NumberOfNodes() -1;

    int ad = (PipeHeight()* (int64_t)ind_)/NumberOfNodes() ;
    int bd = (PipeHeight()* (int64_t)(node+1))/NumberOfNodes() -1;


    vector<int64_t> kloc;
    wczytaj_klocek(kloc, ak,bk);
    vector<int64_t> dziura;
    wczytaj_dziura(dziura, );

}*/


int main() {



    if ( NumberOfDiscs()>PipeHeight() ) {
        if (MyNodeId()==0)
            cout<<0<<endl;
        return 0;
    }

    if (PipeHeight()<5000){

        vector<int64_t> dz,kl;
        wczytaj_dziura(dz, 1, PipeHeight());
        wczytaj_klocek(kl,1,NumberOfDiscs());

        rekordy(dz);
        rekordy_kloc(kl);

        int w  = przejdz(dz,kl);

        /*for(auto v : dz)
        cout<<v<<" ";
    cout<<endl;
    for(auto v : kl)
        cout<<v<<" ";
    cout<<endl;*/
       if (MyNodeId()==0)
        cout<<w+1<<endl;

    }else{



    vector <int64_t> min_dziury(NumberOfNodes());


    int64_t min_dziura = zbadaj_dziure(MyNodeId());

    PutLL(0,min_dziura);
    Send(0);


    if (MyNodeId()==0)
    {
        for (int node = 0; node<NumberOfNodes(); node++)
        {
            Receive(node);
            min_dziury[node]= GetLL(node);
            for (int sn=0; sn<NumberOfNodes();sn++)
            {
                PutLL(sn,min_dziury[node]);
            }
        }
        for (int node = 0; node<NumberOfNodes(); node++)
            Send(node);
    }

    Receive(0);
    for (int node = 0; node<NumberOfNodes(); node++)
    {

        min_dziury[node]= GetLL(0);
    }


//    for (int node = 0; node<NumberOfNodes(); node++)
//    {
//        min_dziury[node]=zbadaj_dziure(node);
//     //   zbadaj_dziure(node);
//    }




    vector<pair< int64_t, int64_t > > wyniki(NumberOfNodes()); // wspolrzedna zawieszenia, dlugosc klocka

 //   for (int node = 0; node<NumberOfNodes(); node++)

    bool jeden_klocek = (NumberOfDiscs()<500);


    {
        int node = MyNodeId();
        int64_t ak = (NumberOfDiscs()* (int64_t)node)/NumberOfNodes() ;
        int64_t bk = (NumberOfDiscs()* (int64_t)(node+1))/NumberOfNodes() -1;

        ak++;
        bk++;

        if (jeden_klocek) {
            ak=1;
            bk=NumberOfDiscs();
        }

        //cout<<"node "<<node<<endl;

        vector <int64_t> klocek;
        wczytaj_klocek(klocek, ak, bk);

       // cout<<"klocek ";
        //for (auto v = begin(klocek);v!=end(klocek);v++)
            //cout<<*v<<" ";
        //cout<<endl;

        rekordy_kloc(klocek);

        int64_t max_klocek = klocek.back();

        int ind_dz=min_dziury.size()-2;
        for (int i=0;i<min_dziury.size()-1;i++){
            if (min_dziury[i]< max_klocek){
                ind_dz = i;
                break;
            }
        }
        int a = (PipeHeight()* (int64_t)ind_dz)/NumberOfNodes() ;
        int b = (PipeHeight()* (int64_t)(ind_dz+2))/NumberOfNodes() -1;

        if (jeden_klocek)
            if (b-a+1 < NumberOfDiscs() ) b = min(a + NumberOfDiscs(), PipeHeight() );

        a++;// indeksowane od jedynki;
        b++;

        vector<int64_t> dz;
        wczytaj_dziura(dz,a,b);

        rekordy(dz);

        int64_t wyn  = przejdz(dz,klocek) + a;

      //  cout<<"zawiesil sie na "<<wyn<<endl;

        //wyniki[node] = make_pair(wyn,bk-ak+1);
        PutLL(0,wyn);
        PutLL(0,bk-ak+1);
        Send(0);
    }



    if (MyNodeId()==0)
    {
        for (int node = 0; node<NumberOfNodes(); node++)
        {
            Receive(node);
            wyniki[node].first = GetLL(node);
            wyniki[node].second = GetLL(node);

        }


        int64_t pozycja = wyniki[0].first;
        for (int i=1;i<wyniki.size();i++)
        {
            pozycja = min(wyniki[i].first , pozycja - wyniki[i].second  );
        }

        if (jeden_klocek)
            cout<<wyniki.back().first<<endl;

        else{
        if (pozycja<=0)
            cout<<0<<endl;
        else
            cout<<pozycja<<endl;
        }

    }

}
    return 0;


}