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
#include "cielib.h"
#include<vector>
#include<cmath>

using namespace std;
int ilosc=0;

int spr(int *t1,int i,int pocz,int kon)
{
	if((kon-pocz)==1)
	{
		t1[i]=kon;
		++ilosc;
		if(czyCieplo(t1))
		{
			return kon; 
		}else return pocz;
	}

	if((kon-pocz)==2)
	{
		t1[i]=pocz+1;
				++ilosc;
		if(czyCieplo(t1))
		{
			//znalazlem(t1);
			return pocz+1;
		}else
		{
			t1[i]=kon;
					++ilosc;
			if(czyCieplo(t1))
			{
				//znalazlem(t1);
				return kon;
			}
			else
			{
				t1[i]=pocz;
				//znalazlem(t1);
				return pocz;
			}

		}
	}
		
	if((kon-pocz)==3)
	{
		t1[i]=pocz+1;
				++ilosc;
		if(czyCieplo(t1))
		{
			t1[i]=pocz+2;
					++ilosc;
			if(czyCieplo(t1))
			{
				t1[i]=pocz+3;
						++ilosc;
				if(czyCieplo(t1))
				{
					return pocz+3;
				}else
				{
					return pocz+2;
				}
			}else
			{
				return pocz+1;
			}
		}else
		{
				return pocz;
		}
	}
	
	return -1;
}


int main() {
	int d = podajD();
	int k=podajK();
	int r=podajR();
	int pocz=0,sr=(r)/2,kon=r;

	int *t1=new int[d];
	for(int i=0;i<d;++i)
	{
		t1[i]=pocz+(kon-pocz)/2;;
	}
	
	for(int i=0;i<d;++i)
	{
		while(1)
		{
			sr=pocz+(kon-pocz)/2;
			t1[i]=sr;
			czyCieplo(t1);
			++ilosc;
			++ilosc;
			t1[i]=pocz;
			if(czyCieplo(t1))
			{
				pocz=pocz;
				kon=pocz+(sr-pocz)/2;
			
				int w=spr(t1,i,pocz,kon);
				if(w!=-1)
				{
					//printf("Wynik=%d\nilosc=%d\n",w,ilosc);
					t1[i]=w;
					break;
				}
			}else
			{
				pocz=pocz+(sr-pocz)/2;
				kon=kon;
				int w=spr(t1,i,pocz,kon);
				if(w!=-1)
				{
					//printf("Wynik=%d\nilosc=%d\n",w,ilosc);
					t1[i]=w;
					break;;
				}
			}
		}
	}
	znalazlem(t1);

	return 0;
}