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
#include<iostream>
#include "cielib.h"
using namespace std;
int tab[1000];

using namespace std;


int main(){
    int r,d,l,p,s,s1;
    bool spr;
    r=podajR();
    d=podajD();
    czyCieplo(tab);
    for(int i=0;i<d;i++){
        l=0;
        p=r;
        s1=0;
        while(l<=p){
            s=(l+p)/2;
            tab[i]=s;
            if(czyCieplo(tab)){
                tab[i]++;
                if(tab[i]<=r)
                    if(czyCieplo(tab)){
                        tab[i]--;
                        czyCieplo(tab);
                        l=s+1;
                        s1=s;
                        continue;
                    }

                tab[i]-=2;
                if(0<=tab[i])
                    if(czyCieplo(tab)){
                        tab[i]++;
                        czyCieplo(tab);
                        p=s-1;
                        s1=s;
                        continue;
                    }
                tab[i]++;
                czyCieplo(tab);
                break;
            }

            else{
                if(s1>p || s==s1){
                    l=s+1;
                }
                else{
                    p=s-1;
                }
            }
        }
        spr=false;
        tab[i]=s1;
        if(czyCieplo(tab))
            spr=true;
        if(!spr)
            tab[i]=s;
    }
    znalazlem(tab);
}