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
#include "dzialka.h"
#include "message.h"
#include <bits/stdc++.h>
#define f first
#define s second
using namespace std;

int nr,n,m,a,b;
long long int wyn;
queue <int> poz[75010];
pair <int,int> stos[75010];

void pre(){
    for(int j=0;j<m;j++){
        for(int i=a;i<b;i++){
            if(!IsUsableCell(i,j)){
                poz[j].push(i);
            }
        }

        if(nr==99)
            poz[j].push(n);
    }
}

void zak(){
    int r=n%100;
    int x=n/100;
    if(nr<=99-r){
        a=nr*x;
        b=a+x;
    }
    else {
        a=(nr*x)+nr+r-100;
        b=a+x+1;
    }
}

void licz(){

    stos[0]=make_pair(n,m);

    for(int i=a;i<b;i++){

        int id=1;
        long long int akt=0;

        for(int j=m-1;j>=0;j--){

            while(id>1&&poz[j].front()<stos[id-1].f){
                akt-=(long long int)(stos[id-2].s-stos[id-1].s)*(stos[id-1].f-i);
                id--;
            }

            stos[id].f=poz[j].front();
            stos[id].s=j;
            id++;

            if(poz[j].front()==i)
                poz[j].pop();

            akt+=(long long int)(stos[id-2].s-stos[id-1].s)*(stos[id-1].f-i);
            wyn+=akt;
        }

    }
}

int main(){

    nr=MyNodeId();
    n=GetFieldHeight();
    m=GetFieldWidth();

    if(nr==0){
        if(n<100){
            a=0;
            b=n;
            pre();
            for(int j=0;j<m;j++){
                poz[j].push(n);
            }
            licz();
            printf("%lld\n",wyn);
            return 0;
        }

        else {
            zak();
            pre();

            for(int i=0;i<m;i++){
                //tu odbieranie
               if(i%15000==0)
                    Receive(nr+1);
                int kappa=GetInt(nr+1);
                poz[i].push(kappa);
            }
            licz();
        PutLL(99,wyn);
        Send(99);
            return 0;
        }

    }

    if(nr==99){
        if(n<100)
            return 0;

        zak();
        pre();
        for(int i=0;i<m;i++){
            //tu wysy³anie
            PutInt(nr-1,poz[i].front());
                if(i%15000==14999){
                    Send(nr-1);
                }
        }
//Send(nr-1);
        if((m-1)%15000!=14999)
            Send(nr-1);

        licz();
        //wysylanie wyniku

        for(int i=0;i<99;i++){
                //odbieranie wyników (x)
                Receive(i);
                long long int x=GetLL(i);
                wyn+=x;
            }
            printf("%lld\n",wyn);

        return 0;
    }

    else {
        if(n<100)
            return 0;

        zak();
        pre();

        for(int i=0;i<m;i++){
            //tu odbieranie
            if(i%15000==0)
                Receive(nr+1);
            int kappa=GetInt(nr+1);
            poz[i].push(kappa);
        }

        for(int i=0;i<m;i++){
            //tu wysy³anie
            PutInt(nr-1,poz[i].front());
                if(i%15000==14999){
                    Send(nr-1);
                }
        }
        if((m-1)%15000!=14999)
            Send(nr-1);
        licz();
        //wysy³anie wyniku
        PutLL(99,wyn);
        Send(99);

        return 0;

    }
}