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
#include <iostream>
#include <algorithm>
#include <vector>
#include <set>
#include "message.h"
#include "kollib.h"
#include <map>

using namespace std;

void JobBack(long long int counter, long long int node_from, long long int node_to){
	PutLL(0, counter);
	PutLL(0, node_from);
	PutLL(0, node_to);
	Send(0);
}

struct job{
	long long int first;
	long long int node;
};

long long int znajdz(map<long long int, map<long long int, long long int> > &graf, long long int q_from, long long int q_to){
	if(q_from == q_to)
		return 0;
	long long int obecny, poprzedni;
	poprzedni = q_from;

	obecny = graf[poprzedni].begin()->first;
	long long int ret = graf[poprzedni][obecny];
	if(obecny == q_to)
		return ret;

	//cout << "obecny1 " << obecny << endl;

	map<long long int, long long int>::iterator it;
	while(obecny != q_to){
		it = graf[obecny].begin();
		if(it->first == poprzedni){
			it++;
			if(it == graf[obecny].end())
				goto dalej;
		}
		poprzedni = obecny;
		obecny = it->first;
		ret += graf[poprzedni][obecny];	
	}

	return ret;

	dalej:

	//cout << "dalej" << endl;

	poprzedni = q_from;
	it = graf[poprzedni].begin();
	it++;
	obecny = it->first;
	ret = graf[poprzedni][obecny];
	if(obecny == q_to)
		return ret;

	//cout << "obecny2 " << obecny << endl;;

	while(obecny != q_to){
		it = graf[obecny].begin();
		if(it->first == poprzedni){
			it++;
		}
		poprzedni = obecny;
		obecny = it->first;
		ret += graf[poprzedni][obecny];	
	}

	return ret;

}

int main(){
	int my_id = MyNodeId();
	int ile_nodow = NumberOfNodes();
	long long int n = NumberOfStudents();
	int m = NumberOfQueries();

	set<long long int> nody;
	vector<long long int> q_from;
	vector<long long int> q_to;

	long long int tmp;
	for(int i=1; i<=m; i++){
		tmp = QueryFrom(i);
		nody.insert(tmp);
		q_from.push_back(tmp);
		tmp = QueryTo(i);
		nody.insert(tmp);
		q_to.push_back(tmp);
	}

	if(my_id == 0){
		map<long long int, map<long long int, long long int> > graf;

		int ile_jobow = 0;

		vector<job> joby;

		set<long long int>::iterator it;
		for(it=nody.begin(); it!=nody.end(); it++){
			job j;
			j.first = 1;
			j.node = *it;
			joby.push_back(j);
			j.first = 0;
			j.node = *it;
			joby.push_back(j);
		}

		while(joby.size() && ile_jobow < ile_nodow - 1){
			ile_jobow++;
			job j = joby.back();
			joby.pop_back();
			PutLL(ile_jobow, j.node);
			PutLL(ile_jobow, j.first);
			Send(ile_jobow);
			//cout << "nowy job"<< endl;
		}

		for(int i=ile_jobow+1; i <= ile_nodow - 1; i++){
			PutLL(i, -1);
			PutLL(i, 1);
			Send(i);
		}

		//cout << ile_jobow << endl;

		while(ile_jobow || joby.size()){
			long long int node_from, node_to, czy_first, ile;
			int job_id;
			job_id = Receive(-1);
			ile = GetLL(job_id);
			node_from = GetLL(job_id);
			node_to = GetLL(job_id);
			ile_jobow --;
			if(ile != 4000000000){
				graf[node_from][node_to] = ile;
				graf[node_to][node_from] = ile;
			}
			//cout << ile << ' ' << node_from << ' ' << node_to << endl;
			if(joby.size()){
				ile_jobow++;
				job j = joby.back();
				joby.pop_back();
				PutLL(job_id, j.node);
				PutLL(job_id, j.first);
				Send(job_id);
				//cout << "nowy job"<< endl;
			}
			else{
				PutLL(job_id, -1);
				PutLL(job_id, 1);
				Send(job_id);
			}			
		}


		for(int i=0;i<m;i++){
			long long int d = znajdz(graf, q_from[i], q_to[i]);
			if(d > n/2)
				d = n - d;
			cout << d << endl;
		}
	}
	else{
		while(true){
			Receive(0);
			long long int node, counter, first; // fist: 1 = tak, 0 - ni
			counter = 0;

			node = GetLL(0);
			first = GetLL(0);

			if(node == -1)
				return 0;

			long long int poprzedni, obecny, nastepny;
			poprzedni = node;
			if(first)
				obecny = FirstNeighbor(poprzedni);
			else
				obecny = SecondNeighbor(poprzedni);
			counter++;

			if(nody.find(obecny) != nody.end()){
				JobBack(counter, node, obecny);
				goto next;
			}

			while(counter <= n/2 + 1){
				nastepny = FirstNeighbor(obecny);
				if(nastepny == poprzedni){
					nastepny = SecondNeighbor(obecny);
				}
				poprzedni = obecny;
				obecny = nastepny;
				counter++;
				if(nody.find(obecny) != nody.end()){
					JobBack(counter, node, obecny);
					goto next;
				}
			}

			counter = 4000000000;

			JobBack(counter, node, obecny);

			next:
			;
		}
	}

	return 0;
}