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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <fstream>
#include <sstream>
#include <set>
#include <map>
#include <vector>
#include <list>
#include <algorithm>
#include <cstring>
#include <cmath>
#include <string>
#include <queue>
#include <bitset>		//UWAGA - w czasie kompilacji musi byc znany rozmiar wektora - nie mozna go zmienic
#include <cassert>
#include <iomanip>		//do setprecision
#include <ctime>
#include <complex>

#include "message.h"
#include "kollib.h"

using namespace std;

#define FOR(i,b,e) for(int i=(b);i<(e);++i)
#define FORQ(i,b,e) for(int i=(b);i<=(e);++i)
#define FORD(i,b,e) for(int i=(b)-1;i>=(e);--i)
#define REP(x, n) for(int x = 0; x < (n); ++x)

#define ST first
#define ND second
#define PB push_back
#define MP make_pair
#define LL long long
#define ULL unsigned LL
#define LD long double

const double pi = 3.141592653589793238462643383279502884197169399375105820974944592307816406286208998628034825342;

pair < int, int > *t;

int main()
{
	int id = MyNodeId();
	int s = NumberOfStudents();
	int p = NumberOfNodes();
	int n = s/p;
	if(id == p/2-1) n += s%p;	// p/2-1 zajmuje sie potencjalnymi resztkami
	

	if(s <= 1000000)	//zrob wszystko na jednym kompie
	{
		if(!id)			//tylko instancja 0 cos zrobi
		{	
			t = new pair<int,int>[s];
			t[0].ST = 1; t[0].ND = 0;
			t[1].ST = FirstNeighbor(1); t[1].ND = 1;
			FOR(i,1,s-1)
			{
				int n1 = FirstNeighbor(t[i].ST);
				if(n1 != t[i-1].ST) t[i+1].ST = n1;
				else t[i+1].ST = SecondNeighbor(t[i].ST);
				t[i+1].ND = i+1;
			}
			sort(t,t+s);
			//REP(i,s) printf("%d %d\n", t[i].ST, t[i].ND);
			int q = NumberOfQueries();
			FORQ(i,1,q)
			{
				int a = QueryFrom(i);
				int b = QueryTo(i);
				int posA = t[lower_bound(t,t+s,MP(a,-1))-t].ND;
				int posB = t[lower_bound(t,t+s,MP(b,-1))-t].ND;
				//printf("%d %d %d %d\n", a, posA, b, posB);
				if(posA > posB) swap(posA, posB);
				printf("%d\n", min(posB-posA,posA+s-posB));
			}
		}
		return 0;
	}

	t = new pair<int,int>[n];

	// wczytywanie danych
	if(!id)
	{
		int n1 = FirstNeighbor(1);
		int n2 = SecondNeighbor(1);
		// niech ostatnia instancja juz rusza
		PutInt(p-1,1);		//ostatnia wartosc dla 0
		PutInt(p-1, n2);	//pierwsza wartosc dla p-1
		Send(p-1);
		// wykonaj prace - wyznacz pierwsze elementy t
		t[0].ST = 1; t[1].ST = n1;
		FOR(i,1,n-1)
		{
			n1 = FirstNeighbor(t[i].ST);
			if(n1 != t[i-1].ST) t[i+1].ST = n1;
			else t[i+1].ST = SecondNeighbor(t[i].ST);
		}
		int akt;
		n1 = FirstNeighbor(t[n-1].ST);
		if(n1 != t[n-2].ST) akt = n1;
		else akt = SecondNeighbor(t[n-1].ST);
		// uruchom kolejna instance
		PutInt(1,t[n-1].ST);	//ostatnia wartosc dla 0
		PutInt(1,akt);		//pierwsza wartosc dla 1
		Send(1);
		// wyznacz indeksy
		REP(i,n) t[i].ND = i;
	}
	else	//czekaj na ostatni z poprzedniej fazy i pierwszy z aktualnej
	{
		int skad = Receive(-1);
		int prev = GetInt(skad);	//ostatnia wartosc z poprzedniej
		int akt = GetInt(skad);	//pierwsza wartosc aktualna
		t[0].ST = akt;
		//wyznaczaj pozostale elementy
		int n1 = FirstNeighbor(akt);
		if(n1 != prev) t[1].ST = n1;
		else t[1].ST = SecondNeighbor(akt);
		FOR(i,1,n-1)
		{
			n1 = FirstNeighbor(t[i].ST);
			if(n1 != t[i-1].ST) t[i+1].ST = n1;
			else t[i+1].ST = SecondNeighbor(t[i].ST);
		}
		n1 = FirstNeighbor(t[n-1].ST);
		if(n1 != t[n-2].ST) akt = n1;
		else akt = SecondNeighbor(t[n-1].ST);
		//uruchom kolejna instancje
		int gdzie = -1;
		if(id > p/2)	gdzie = id-1;//w dol
		else if(id < p/2-1) gdzie = id+1;	//w gore
		if(gdzie > -1)
		{
			PutInt(gdzie, t[n-1].ST);	//ostatnia liczba z danej instancji
			PutInt(gdzie, akt);
			Send(gdzie);
		}
		//wyznacz indeksy
		REP(i,n) t[i].ND = i;
	}
	//if(id == 3) printf("%d %d %d\n", id, t[0].ST, t[n-1].ST);
	// koniec wczytywania danych
	sort(t, t+n);
	//obsluga zapytan
	int q = NumberOfQueries();
	if(!id)
	{
		pair < int, int > *ans = new pair<int,int>[q];
		REP(i,q) ans[i] = MP(-1,-1);
		FORQ(i,1,q)
		{
			int a = QueryFrom(i);
			int b = QueryTo(i);		
			int posA = -1;
			int posB = -1;
			int wskA = lower_bound(t,t+n,MP(a,-1))-t;
			int wskB = lower_bound(t,t+n,MP(b,-1))-t;
			if(wskA < n && t[wskA].ST == a) posA = t[wskA].ND;
			if(wskB < n && t[wskB].ST == b) posB = t[wskB].ND;
			if(posA == -1)	//musimy uzyskac obie pozycje
			{
				int skad = Receive(-1);
				int ktoreQ = GetInt(skad);
				if(ans[ktoreQ].ST == -1) ans[ktoreQ].ST = GetInt(skad);
				else ans[ktoreQ].ND = GetInt(skad);
			}
			else
			{
				if(ans[i-1].ST == -1) ans[i-1].ST = posA;
				else ans[i-1].ND = posA;
			}
			if(posB == -1)	//musimy uzyskac obie pozycje
			{
				int skad = Receive(-1);
				int ktoreQ = GetInt(skad);
				if(ans[ktoreQ].ST == -1) ans[ktoreQ].ST = GetInt(skad);
				else ans[ktoreQ].ND = GetInt(skad);
			}
			else
			{
				if(ans[i-1].ST == -1) ans[i-1].ST = posB;
				else ans[i-1].ND = posB;	
			}
		}
		REP(i,q)
		{
			if(ans[i].ST > ans[i].ND) swap(ans[i].ST, ans[i].ND);
			printf("%d\n", min(ans[i].ND-ans[i].ST,ans[i].ST+s-ans[i].ND));	//instancja 0 wypisuje odp
		}
	}
	else
	{
		FORQ(i,1,q)
		{
			int a = QueryFrom(i);
			int b = QueryTo(i);		
			int posA = -1;
			int posB = -1;
			int wskA = lower_bound(t,t+n,MP(a,-1))-t;
			int wskB = lower_bound(t,t+n,MP(b,-1))-t;
			if(wskA < n && t[wskA].ST == a) posA = t[wskA].ND;
			if(wskB < n && t[wskB].ST == b) posB = t[wskB].ND;
			if(posA != -1)	//0 musi uzyskac obie pozycje
			{
				//przekonwertuj posA na odleglosc od 1 w kierunku 0
				if(id < p/2-1) posA += id*n;
				else if(id == p/2-1) posA += id*(s/p);
				else posA = n-posA-1 + id*n + s%p;	//trzeba uwzglednic potencjalne resztki w p/2-1
				PutInt(0,i-1);	//numer pytania
				PutInt(0,posA);
				Send(0);
			}
			if(posB != -1)	//0 musi uzyskac obie pozycje
			{
				/*if(id == 4 && i == 3)
				{
					printf("%d %d %d %d %d %d %d\n", b, wskB, posB, n, s, p, posB + id*(s/p));
				}*/
				//przekonwertuj posB na odleglosc od 1 w kierunku 0
				if(id < p/2-1) posB += id*n;
				else if(id == p/2-1) posB += id*(s/p);
				else posB = n-posB-1 + id*n + s%p;	//trzeba uwzglednic potencjalne resztki w p/2-1
				PutInt(0,i-1);	//numer pytania
				PutInt(0,posB);
				Send(0);
			}
		}
	}
	// delete t;
	// delete v;
	return 0;
}