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
#include <cstdlib>
#include <iostream>
#include <map>
#include <algorithm>

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

using namespace std;

int n_nodes;
int n_of_students;
int n_of_queries;
int my_node_id;

const int MAXM = 200 + 5;

int tab[MAXM][2];

map<int,int> m;

void wyslij_odpowiedzi()
 {
	for (int i = 1; i <= n_of_queries; i++) {
	    int qf = QueryFrom(i);
		int qt = QueryTo(i);
		
		if (m[qf] != 0) {
			PutInt(0,i);
			PutInt(0,m[qf]);
			Send(0);
	    }
		
		if (m[qt] != 0) {
			PutInt(0,i);
			PutInt(0,m[qt]);
			Send(0);
		}
	}
}

void zbierz_odpowiedzi() {
	for (int j = 0; j < 2; j++)
		for (int i = 1; i <= n_of_queries; i++) {
			int source = Receive(-1);
			int queryId = GetInt(source);
			int queryValue = GetInt(source);
		
			if (tab[queryId][0]==0) tab[queryId][0] = queryValue;
			else tab[queryId][1] = queryValue;
	}
}

void wypisz_odpowiedzi() {
	for (int i = 1; i <= n_of_queries; i++) {
	
		int odp = max(tab[i][0] - tab[i][1], tab[i][1] - tab[i][0]);
		cout << min(n_of_students - odp, odp) << endl;

	}
}

int wypelnij(int &akt, int &pop) {

    int limit = n_of_students / n_nodes;
	int n = my_node_id * limit + 1;
	
	if (my_node_id == n_nodes - 1) {
		limit += n_of_students % n_nodes;
	}
	
	for (int i = 0; i < limit ; i++) {
		int f = FirstNeighbor(akt);
		int s = SecondNeighbor(akt);
		int a = akt; 
		
		m[akt] = n;	
		
		if (pop == f) {
			akt = s;
		} else {
			akt = f;
		}
	  
	    pop = a;
	
		n++;
	} 
}

int main(int argc, char *argv[])
{
    n_nodes = NumberOfNodes();
	n_of_students = NumberOfStudents();
	n_of_queries = NumberOfQueries();
	
    my_node_id =  MyNodeId();
	 
	int akt;
    int	pop;
	
	if (my_node_id == 0) {
		akt = 1;
		pop = FirstNeighbor(1);
		wypelnij(akt, pop);
	}
	
	if (my_node_id == 0 && n_nodes !=1) { 
		PutInt(1,akt);
		PutInt(1,pop);
		Send(1);
	}
	
	if (my_node_id != 0) {
		Receive(my_node_id-1);
		akt = GetInt(my_node_id-1);
		pop = GetInt(my_node_id-1);
	
		wypelnij(akt, pop);
		if (my_node_id != n_nodes - 1) {
		    PutInt(my_node_id + 1,akt);
		    PutInt(my_node_id + 1,pop);
			Send(my_node_id + 1);
		}
	}
	
	wyslij_odpowiedzi();
	
	if (my_node_id == 0) {
		zbierz_odpowiedzi();
		wypisz_odpowiedzi();
    }
	
    return 0;
}