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
#include "dzialka.h"
#include <iostream>
#include "message.h"
#include <cmath>
#include <bitset>
#include <vector>
#define mp make_pair
using namespace std;
int ilosc, id;
/*
int _h=75000, _w=_h;
int GetFieldHeight()
{
	return _h;
	}
int GetFieldWidth()
{
	return _w;
}

int IsUsableCell(int ah, int aw)
{
	return ah!=aw;
}//*/

int main()
{
	ilosc=NumberOfNodes();
	id=MyNodeId();
	int wys=GetFieldHeight();
	int szer=GetFieldWidth();
	ilosc=min(ilosc, wys);
	if(id>=ilosc) return 0;
	int poc=floor(double(wys)*id/ilosc);
	int kon=floor(double(wys)*(id+1)/ilosc);
	bitset<75000>tab[kon-poc];
	int ost[szer], ostpop[szer];
	for(int j=0; j<szer; j++) ost[j]=-1;
	for(int j=0; j<szer; j++) ostpop[j]=-1;
	for(int i=poc; i<kon; i++)
	{
		for(int j=0; j<szer; j++)
		{
			tab[i-poc][j]=IsUsableCell(i, j);
			if(tab[i-poc][j]==0) ost[j]=max(ost[j], i);
		}
	}
	for(int odl=1; odl<ilosc; odl*=2)
	{
		if(id+odl<ilosc)
		{int wid=id+odl;
		for(int j=0; j<szer; j++)
		{
			PutInt(wid, ost[j]);
		}
		Send(wid);
		}
		if(id-odl>=0)
		{
			int rid=id-odl;
			Receive(rid);
		for(int j=0; j<szer; j++)
		{
			ostpop[j]=max(ostpop[j], GetInt(rid));
			ost[j]=max(ost[j], ostpop[j]);
		}
			}
	}
/*
	for(int )
	{
		Receive(rid);
		for(int j=0; j<szer; j++)
		{
			ostpop[j]=max(ostpop[j], GetInt(rid));
		}
	}
	/*if(id>0)
	{
		Receive(id-1);
		for(int j=0; j<szer; j++)
		{
			ostpop[j]=GetInt(id-1);
			ost[j]=max(ost[j], ostpop[j]);
		}
	}
	if(id<ilosc-1)
	{
		for(int j=0; j<szer; j++)
		{
			PutInt(id+1, ost[j]);
		}
		Send(id+1);
	}*/
	long long wyn=0;
	vector <pair <int, int> > kol;
	kol.push_back(mp(-1, 1e9));
	for(int i=poc; i<kon; i++)
	{
		while(kol.size()>1) kol.pop_back();
		long long sum=0;
		for(int j=0; j<szer; j++)
		{
			if(tab[i-poc][j]==0) ostpop[j]=i;
			while(ostpop[j]>kol.back().second)
			{
				sum-=(long long)kol.back().second*(kol.back().first-kol[kol.size()-2].first);
				kol.pop_back();
			}
			sum+=(long long)ostpop[j]*(j-kol.back().first);
			kol.push_back(mp(j, ostpop[j]));
			//cout<<i<<" "<<j<<" "<<sum<<endl;
			wyn=wyn+(long long)(j+1)*(i)-sum;
		}
	}
	if(id!=0)
	{
		//cout<<"send "<<wyn<<endl;
		PutLL(0, wyn);
		Send(0);
	}
	if(id==0)
	{
		//cout<<"zero "<<wyn<<endl;
		for(int i=1; i<ilosc; i++)
		{
			Receive(i);
			wyn+=GetLL(i);
		}
		printf("%lld\n", wyn);
	}
}