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
#include <algorithm>
#include <vector>
#include "krazki.h"
#include "message.h"
using namespace std;
typedef vector<int> VI;
typedef long long LL;
typedef vector<VI> VVI;
typedef vector<LL> VLL;
typedef vector<double> VD;
//typedef vector<string> VS;
typedef pair<int, int> PII;
typedef vector<PII> VPII;

typedef pair<LL,LL> PLL;
typedef vector <PLL> VPLL;

#define FOR(x, b, e) for(int x = b; x <= (e); ++x)
#define FORD(x, b, e) for(int x = b; x >= (e); --x)
#define REP(x, n) for(int x = 0; x < (n); ++x)
#define VAR(v, n) typeof(n) v = (n)
#define ALL(c) (c).begin(), (c).end()
#define SIZE(x) ((int)(x).size())
#define FOREACH(i, c) for(VAR(i, (c).begin()); i != (c).end(); ++i)
#define PB push_back
#define ST first
#define ND second
#define MP make_pair
#define PF push_front

int n,m;
int insta;
int ilen;
PII zakres;
const LL INF=(1e18+1e17);
int main()
{
	ilen=NumberOfNodes();
	insta=MyNodeId();
	n=PipeHeight();
	m=NumberOfDiscs();
	int pos;
	LL krag;
	if((n+m)<=2*10000000)
	{
		if(insta==0)
		{
		
		LL* tab = new LL[n+2];
		tab[0]=INF;
		
		FOR(i,1,n)
		{
			tab[i]=HoleDiameter(i);
			if(tab[i-1]<tab[i])
			tab[i]=tab[i-1];
		}
		pos=n+1;
		FOR(i,1,m)
		{
			pos--;
			krag=DiscDiameter(i);
			while(tab[pos]<krag && pos!=0)
			pos--;	
			
			if(pos==0)
			{
				printf("%d\n",pos);
				return 0;
			}
		}
			
		printf("%d\n",pos);
		return 0;
		
		}
	}
	else
	{
		int dlugosc=n/ilen;
		zakres.ST=1+insta*dlugosc;
		zakres.ND=zakres.ST+dlugosc-1;
		if(insta==ilen-1)
		zakres.ND=m;
		
		dlugosc=zakres.ND-zakres.ST+1;
		LL* tab=new LL[dlugosc+10];
		//PLL* lim=new PLL[ilen+10];
		tab[0]=INF;
		LL minuj;
		FOR(i,zakres.ST,zakres.ND)
		{
			tab[i-zakres.ST+1]=HoleDiameter(zakres.ST);
			if(tab[i-zakres.ST]<tab[i-zakres.ST+1])
			tab[i-zakres.ST+1]=tab[i-zakres.ST];
		}
		if(insta!=0)
		{
			Receive(insta-1);
			minuj=GetLL(insta-1);
			if(tab[dlugosc]>minuj)
			tab[dlugosc]=minuj;
		}
		if(insta!=ilen-1)
		{
			PutLL(insta+1,tab[dlugosc]);
			Send(insta+1);
		}
		FOR(i,zakres.ST,zakres.ND)
		{
			tab[i-zakres.ST+1]=HoleDiameter(zakres.ST);
			if(minuj<tab[i-zakres.ST+1])
			tab[i-zakres.ST+1]=minuj;
		}
		PutInt(0,insta);
		PutInt(0,zakres.ST);
		PutInt(0,zakres.ND);
		PutLL(0,tab[1]);
		PutLL(0,tab[zakres.ND-zakres.ST+1]);
		Send(0);
		if(insta==0)
		{
			PLL* lim=new PLL[ilen+10];
			PII* num=new PII[ilen+10];
			int maszyna;
			REP(i,ilen)
			{
				Receive(i);
				maszyna=GetInt(i);
				num[i].ST=GetInt(i);
				num[i].ND=GetInt(i);
				lim[i].ST=GetLL(i);
				lim[i].ND=GetLL(i);
			}
			int pos=n;
			int zbior=ilen-1;
			LL krag;
			FOR(i,1,m)
			{
				krag=DiscDiameter(i);
				while(zbior>0 && lim[zbior].ST<krag)
				{
					zbior--;
					pos=num[zbior].ND;
				}
				if(zbior==0 && lim[zbior].ST<krag)
				{
					printf("0\n");
					return 0;
				}
				while(pos!=0 && HoleDiameter(pos)<krag)
				{
					pos--;
				}
				
				if(i!=m)
				pos--;
				
				if(pos<=0)
				{
					printf("0\n");
					return 0;
				}
			}
			printf("%d\n",pos);
			return 0;
		}
		
	}

}