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
#include <iostream>
#include <cstdio>
#include <algorithm>
#include <vector>
#include <set>
#include <queue>

#include "cielib.h"

using namespace std;

const int N = 505;

int t[N];
int pp[N];

int main() {

	int d = podajD();
    int k = podajK();
    int r = podajR();

    for(int i = 0; i < d; ++i) pp[i] = 0;

    int lr = r + 1;

	while(lr > 3)
    {
        int m = lr / 2;
        if (lr % 2 == 0) --m;

        for(int i = 0; i < d; ++i) t[i] = pp[i] + m;

        czyCieplo(t);

        for(int i = 0; i < d; ++i)
        {
            int mpp = pp[i];
            t[i] = pp[i];
            if (!czyCieplo(t))
            {
                t[i] = pp[i] + lr - 1;
                if(czyCieplo(t))
                {
                    pp[i] += m;
                }
            }
            t[i]=mpp+m;
            czyCieplo(t);
        }

        lr = lr / 2 + 1;
    }

    for(int i = 0; i < d; ++i) t[i] = pp[i] + 1;
    czyCieplo(t);
    for(int i = 0; i < d; ++i)
    {
        t[i] = pp[i];
        if (czyCieplo(t)) break;
        t[i] = pp[i] + 2;
        if (czyCieplo(t)) continue;
        t[i] = pp[i] + 1;
        if (!czyCieplo(t)) continue;
        t[i] = pp[i];
        int c1 = czyCieplo(t);
        t[i] = pp[i] + 1;
        int c2 = czyCieplo(t);
        if (!c1 && c2) break;
        else t[i] = pp[i];
    }
    znalazlem(t);

    return 0;
}