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
/*	Arkadiusz Wróbel
 *
 *	Konkurs: Potyczki Algorytmiczne, runda 4B
 *	Zadanie: Krążki 2
 */
#include "message.h"
#include "krazki.h"

#include <cstdio>
#include <iostream>

#include <algorithm>
#include <cmath>
#include <cstring>

#include <vector>
#include <set>
#include <map>
#include <list>
#include <queue>
#include <deque>

using namespace std;

typedef long long LL;
typedef unsigned long long ULL;
typedef pair<int, int> PII;

typedef vector<int> VI;
typedef vector<LL> VLL;
typedef vector<double> VD;
typedef vector<string> VS;
typedef vector<PII> VPII;
typedef vector<VI> VVI;

#define REP(I, N) for(int I = 0; I < (N); ++I)
#define FOR(I, M, N) for(int I = (M); I <= (N); ++I)
#define FORD(I, M, N) for(int I = (M); I >= (N); --I)
//#define FOREACH(IT, CON) for(__typeof((CON).begin()) IT = (CON).begin(); IT != (CON).end(); ++IT)

#define ST first
#define ND second
#define MP make_pair
#define PB push_back
#define SIZE(CON) ((int)(CON).size())
#define ALL(CON) (CON).begin(), (CON).end()

const int INF = 1000000000;
const LL INFLL = 1000000000000000000LL;

//######################################################################

int numberOfNodes;
int myNodeId;

int n;
int m;

void make_distributed() {
	if (myNodeId == 0) {fprintf(stderr, "DISTRIBUTED\n");}
	
	int ile = n / numberOfNodes;
	if (n % numberOfNodes) {
		++ile;
	}

	int pocz = ile * myNodeId;
	int kon = ile * (myNodeId + 1);
	kon = min(kon, n);
	ile = kon - pocz;
	//fprintf(stderr, "(%d): %d - %d (%d)\n", myNodeId, pocz, kon, ile);

	vector<LL> holes;  // n+1 (zerowy jest strażnikiem)
	LL hole = INFLL + 1;
	holes.PB(hole);
	FOR(i, 1, ile) {
		hole = min(hole, HoleDiameter(pocz + i));
		holes.PB(hole);
	}
	
	LL minimHole = INFLL;
	
	if (myNodeId > 0) {
		Receive(myNodeId - 1);
		minimHole = GetLL(myNodeId - 1);
	}
	
	if (myNodeId + 1 < numberOfNodes) {
		PutLL(myNodeId + 1, min(minimHole, holes[ile]));
		Send(myNodeId + 1);
	}
	
	FOR(i, 1, ile) {
		holes[i] = min(holes[i], minimHole);
	}
	
	//if (!myNodeId) {FOR(i, 1, ile) {fprintf(stderr, "%d: %lld\n", i, holes[i]);}}
	
	/* Przepuszczanie krążków */
	
	int v = ile;
	FOR(j, 1, m) {
		LL disc = DiscDiameter(j);
		
		if (v == ile && disc <= holes[v]) {
			continue;  // krążek przelatuje
		}

		while (v > 0 && disc > holes[v]) --v;
		--v;  // położenie krążka na pierwszym wolnym miejscu

		if (v < 0) {
			PutLL(0, pocz - (m - j));  // wysyłamy wynik
			Send(0);
			return;
		}
	}
	
	PutLL(0, v == ile ? INFLL : (pocz + v + 1));  // wysyłamy wynik
	Send(0);
}

void make_static() {
	if (myNodeId) {
		exit(0);
	}
	fprintf(stderr, "STATIC\n");

	vector<LL> holes;  // n+1 (zerowy jest strażnikiem)

	LL hole = INFLL + 1;
	holes.PB(hole);
	FOR(i, 1, n) {
		hole = min(hole, HoleDiameter(i));
		holes.PB(hole);
	}

	int v = n;

	FOR(j, 1, m) {
		LL disc = DiscDiameter(j);

		while (v > 0 && disc > holes[v]) --v;
		--v;  // położenie krążka na pierwszym wolnym miejscu

		if (v < 0) {
			break;
		}
	}

	printf("%d\n", v + 1);
	exit(0);
}

int main() {
	numberOfNodes = NumberOfNodes();
	myNodeId = MyNodeId();

	n = PipeHeight();
	m = NumberOfDiscs();

	//if (n >= numberOfNodes + 2)
	if (numberOfNodes > 1 && n >= 11123987)
		make_distributed();
	else
		make_static();
	
	if (myNodeId) {
		exit(0);
	}
	
	LL wy = n - m + 1;
	
	REP(i, numberOfNodes) {
		Receive(i);
		LL wyn = GetLL(i);
		wy = min(wy, wyn);
		//fprintf(stderr, "(%d): %lld\n", i, wyn);
	}
	
	printf("%lld\n", wy);
	
	return 0;
}