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

#define fru(j,n) for(int j=0;j<n;++j)
#define tr(it,x) for(typeof(x.begin()) it=x.begin();it!=x.end();++it)
#define x first
#define y second

using namespace std;

typedef long long LL;
typedef pair<int,int> pii;

const int MAXN= 100005;

int n;

int myrand()
{
	int ret=0;
	fru(i,5)
	{
		ret=(1LL*ret*rand()+341)%n;
	}
	return ret+1;
}
set<int> juz;
vector<int> A;

vector<pii> H[MAXN];
inline int myhash(int a) {return (371251LL*a)%MAXN;};

inline void dorzuc(int a,int c)
{
//	printf("zaznaczam ze specjalny jest %d o et %d\n",a,c);
	H[myhash(a)].push_back(pii(a,c));
}
inline int jest(int a) //1 - koncowy, 0 - pytaniowy
{
	int w=myhash(a);
	tr(it,H[w]) if(it->x==a) return it->y;
	return -1;
}
typedef pair<pii,int> tri;
void krawedz(int a,int b,int d)
{
	//fprintf(stderr,"komputer %d wyliczyl ze:\n jest krawedz na cyklu od %d do %d o dlugosci %d\n",MyNodeId(),a,b,d);
	PutInt(0,d);
	PutInt(0,a);
	PutInt(0,b);
	Send(0);
	//wyslij to
}
map<int,vector<pii> > M;
map<int,int> ANS;
int main() {
	srand(74);
	n=NumberOfStudents();
	int komp=NumberOfNodes();
	if(MyNodeId()>=n) return 0;
	komp=min(komp,n);
	while(juz.size()<komp) juz.insert(myrand());
	tr(it,juz) A.push_back(*it);
	fru(i,komp) dorzuc(A[i],1);
	int pyt=NumberOfQueries();
	fru(i,pyt) fru(j,2)
	{
		int a;
		if(j==0) a=QueryTo(i+1);
		else a=QueryFrom(i+1);
		if(juz.find(a)==juz.end())
		{
			juz.insert(a);
			dorzuc(a,0);
		}
	}
	int ja=A[MyNodeId()];
//	fprintf(stderr,"maszyna o numerze %d startuje w polu %d\n",MyNodeId(),ja);
	int ee=20;
	int sas1=FirstNeighbor(ja),
		sas2=SecondNeighbor(ja);
	fru(o,2)
	{
		int pocz=ja,prev=sas1,q=ja;
		int odl=0;
//		printf("startuje w q = %d\n",q);
		while(1)
		{
			++odl;
			int q2=q;
			q=prev^FirstNeighbor(q)^SecondNeighbor(q);
			prev=q2;
			int co=jest(q);
	//		printf("ide do %d a co = %d\n",q,co);
//			ee--;			if(ee==0) return 0;

			if(co!=-1) krawedz(pocz,q,odl);
			if(co==1) break;
			if(co==0)
			{
				pocz=q;
				odl=0;
			}
		}
		swap(sas1,sas2);
	}
	PutInt(0,-1);
	Send(0);
	if(MyNodeId()) return 0;
	fru(i,komp)
	{
		while(1)
		{
			Receive(i);
			int dl;
			dl=GetInt(i);
			if(dl==-1) break;
			int a=GetInt(i),b=GetInt(i);
//			printf("odczytalem droge %d do %d o koszcie %d z maszyny %d\n",a,b,dl,i);
			M[a].push_back(pii(b,dl));
//			M[b].push_back(pii(a,dl));
		}
	}
	int pr=-1;
	int q=A[0];
	int sum=0;
	while(1)
	{
		ANS[q]=sum;
//		printf("ANS[%d] = %d\n",q,sum);
		tr(it,(M[q])) if(it->x!=pr)
		{
			sum+=it->y;
			pr=q;
			q=it->x;
			break;
		}
		if(sum==n) break;
	}
	for(int i=1;i<=pyt;++i)
	{
		int a=QueryFrom(i);
		int b=QueryTo(i);
		int dl=abs(ANS[a]-ANS[b]);
		printf("%d\n",min(dl,n-dl));
	}
  return 0;
}