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
#include "kollib.h"
#include "message.h"
#include <cstdio>
#include <algorithm>
using namespace std;

int t[30001016];//na którym miejscu stoi wartość t[i]

int odl(int p, int k, int n)
{
	int w=t[p]-t[k];
	if (w<0) w=-w;
	return min(w, n-w);
}

int main()
{
	//printf("  %lu\n", sizeof(t));
	if (MyNodeId()!=0) return 0;
	
	int n=NumberOfStudents();
	int pre=0, cur=1, nex;
	
	t[1]=1;
	
	for (int i=2; i<=n; i++)
	{
		nex=FirstNeighbor(cur);
		if (nex==pre) nex=SecondNeighbor(cur);
		
		pre=cur;
		cur=nex;
		t[cur]=i;
	}
	
	int l=NumberOfQueries();
	
	for (int it=1; it<=l; it++)
	{
		printf("%d\n", odl(QueryFrom(it), QueryTo(it), n));
	}
	
	return 0;
	//ADG
}