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
#include<bits/stdc++.h>
#include "dzialka.h"
#include "message.h"
#define rep(i,a,b) for(int i=a;i<b;i++)
#define per(i,a,b) for(int i=a;i>b;i--)
#define repLL(i,a,b) for(LL i=(LL)a;i<(LL)b;i++)
#define perLL(i,a,b) for(LL i=(LL)a;i>(LL)b;i--)
#define debug5(a,b,c,d,e) cerr<<#a<<": "<<a<<" "<<#b<<": "<<b<<" "<<#c<<": "<<c<<" "<<#d<<": "<<d<<" "<<#e<<": "<<e<<endl;
#define debug4(a,b,c,d)  cerr<<#a<<": "<<a<<" "<<#b<<": "<<b<<" "<<#c<<": "<<c<<" "<<#d<<": "<<d<<endl;
#define debug3(a,b,c) cerr<<#a<<": "<<a<<" "<<#b<<": "<<b<<" "<<#c<<": "<<c<<endl;
#define debug2(a,b) cerr<<#a<<": "<<a<<" "<<#b<<": "<<b<<endl;
#define debug(a) cerr<<#a<<": "<<a<<endl;
#define pb push_back
#define mp make_pair
#define SZ(x) ((int)(x).size())
#define ALL(x) x.begin(),x.end()
#define fi first
#define se second
#define _upgrade ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);

using namespace std;

typedef long long LL;
typedef pair<int,int> PII;
typedef pair<LL,LL> PLL;
typedef vector<PII> VPII;
typedef vector<PLL> VPLL;
typedef vector<LL> VLL;
typedef vector<int> VI;
typedef vector<string> VS;
typedef vector<char> VC;
typedef long double LD;
typedef pair<LD,LD> PLD;
typedef vector<LD> VLD;
typedef vector<PLD> VPLD;

const int maxn=(1e6)+7;
const int inf=(1e9)+7;
const LL LLinf=(1e18)+7;
const LD eps=1e-9;
const LL mod=1e9+7;

// ***************************** CODE ***************************** //

int dp[75007];
int le[75007];
LL res=0LL;
stack<PII> stos;
int suma;
int n,w,h,NN;
int ROZMIAR = 256 * 64 ;
int wsk=0;
int licz=0;
int lewo;
int prawo;
int s;
int ile;

int pocz(int N)
{
      if((LL)w/(LL)NN==0LL)
            return min(w,N);
      int roz=max(1LL,(LL)w/(LL)NN);
      int pozo=w-roz*NN;
      if(N==NN)
            return w;
      return min(min(N,pozo)+N*(LL)roz,(LL)w);
}

int main()
{
      n=MyNodeId();
      NN=NumberOfNodes();
      w=GetFieldWidth();
      h=GetFieldHeight();
      lewo=pocz(n);
      prawo=pocz(n+1)-1;
      rep(j,0,h)
            dp[j]=le[j]=inf;
      rep(j,0,h)
            le[j]=dp[j]=w;
      per(i,prawo,lewo-1)
            rep(j,0,h)
            {
                  if(!IsUsableCell(j,i))
                        le[j]=min(le[j],i);
            }
      if(n==NN-1)
      {
            wsk=0;
            licz=0;
            while(wsk<h)
            {
                  licz=0;
                  while(licz<ROZMIAR && wsk<h)
                  {
                        licz++;
                        PutInt(n-1,le[wsk]);
                        wsk++;
                  }
                  Send(n-1);
            }
      }
      else
      {
            wsk=0;
            licz=0;
            while(wsk<h)
            {
                  Receive(n+1);
                  while(licz<ROZMIAR && wsk<h)
                  {
                        licz++;
                        dp[wsk]=GetInt(n+1);
                        if(n!=0)
                              PutInt(n-1,min(dp[wsk],le[wsk]));
                        wsk++;
                  }
                  if(n!=0)
                        Send(n-1);
            }
      }
      per(I,prawo,lewo-1)
      {
            rep(j,0,h)
                  if(!IsUsableCell(j,I))
                        dp[j]=I;
            suma=0;
            ile=0;
            while(SZ(stos))
                  stos.pop();
            stos.push({0,0});
            rep(i,0,h)
            {
                  s=dp[i]-I;
                  while(SZ(stos) && stos.top().fi>=s)
                  {
                        ile-=stos.top().se;
                        suma-=stos.top().fi*(LL)stos.top().se;
                        stos.pop();
                  }
                  suma+=s*(LL)(i+1-ile);
                  stos.push({s,i+1-ile});
                  res+=suma;
                  ile=i+1;
            }
            while(SZ(stos))
                  stos.pop();
      }
      if(n==0)
      {
            rep(i,1,NN)
            {
                  Receive(i);
                  res+=GetLL(i);
            }
            printf("%Ld\n",res);
      }
      else
      {
            PutLL(0,res);
            Send(0);
      }
      return 0;
}