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
//Brutalando, ktoś tu nie umie binsearcha napisać :O
#include <cstdio>
#include <vector>
#include <algorithm>
#include <set>
#include <iostream>
#include <map>
#include "cielib.h"

using namespace std;

#define REP(i,n) for(int i=0; i<(int)n; i++)
#define ST first
#define ND second
#define MP make_pair
#define PB push_back

typedef vector<int> VI;
typedef pair<int,int> PI;
typedef vector<PI> VPII;
typedef set<int> SI;
typedef long long LL;

#ifdef DEBUG
const bool debug = true;
#else
const bool debug = false;
#endif
int n,m,l, test = 1;
const int INF = 1000 * 1000 * 1000 ;
const int MAKSN = 500 + 13; // UZUPElnic

int d, k, r, moves;

int t[MAKSN];
bool jestemZerem[MAKSN];

void readIn()
{	
	d = podajD();
	k = podajK();
	r = podajR();
	moves = 0;
	REP(i, d) {
		jestemZerem[i] = false;
		t[i] = 1;
	}
}


void wypisz() {
	REP(i, d)
	cout << t[i] << " ";
	cout << "\n";
}

bool czyPogarsza(int pos) {
	t[pos]--;
	bool a = czyCieplo(t);
	t[pos]++;
	a = czyCieplo(t);
	moves += 2;

	return a;
}

bool czyPogarsza2(int pos) {
	t[pos]++;
	bool a = czyCieplo(t);
	t[pos]--;
	a = czyCieplo(t);
	moves += 2;
	return a;
}

VI dajPogary() {
	VI v;

	REP(i, d) {
		if(!jestemZerem[i] && czyPogarsza(i))
			v.PB(i);
	}

	return v;
}


bool wszystkieTyleSamo() {
	REP(i, d)
		if(t[i] == r) 
			return false;

	REP(i, d) {
		t[i]++;
	}
	bool a = czyCieplo(t);
	moves++;

	if(!a) 
		REP(i, d)
			t[i]--;

	return a;
}

void tryZeroes() {
	VI v;
	REP(i, d) 
	{
		if(t[i] == 1 && czyPogarsza2(i)) {
			t[i] = 0;
			jestemZerem[i] = true;
		}
	}
}

VI pogary;

void solve()
{
	czyCieplo(t);
	moves++;
  	while(true) {
		// wypisz();
		// cout << moves << "lecimy \n";
  		pogary = dajPogary();
  		// REP(i, pogary.size()){
  			// cout << pogary[i] <<" ";
  			
  		// }
  		// cout << "pogary\n";

  		if ((int)pogary.size() == d) {
  			// cout << "Czy tu\n";
			if(!wszystkieTyleSamo())
				break;	
  		}
		else {	
			if(pogary.size() == 0) {
				tryZeroes();
				break;
			}
			else
			REP(i, pogary.size()) {
				t[pogary[i]]++;
			 }	
		}	
  			

  	}
	znalazlem(t);
}

void zeruj()
{
}

int main()
{
	// ios_base::sync_with_stdio(0);

	// cin >> test;
    REP(i, test)
    {
        zeruj();
        readIn();
        solve();
    }

    return 0;
}