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
#include<bits/stdc++.h>
using namespace std;
int k,T[1000005];
pair<int,int> t[1000];
vector<pair<int,int> > v;
int main()
{
    cin >> k;
    int liczba = 1;
    int obecny = 1;
    T[obecny] = 1;
    while(T[obecny] * 2 <= k)
    {
        T[obecny + 1] = T[obecny];
        T[obecny + 2] = T[obecny];
        T[obecny + 3] = 2*T[obecny];
        v.push_back({obecny,obecny+1});
        v.push_back({obecny,obecny+2});
        v.push_back({obecny+1,obecny+3});
        v.push_back({obecny+2,obecny+3});
        obecny += 3;
    }
    int koniec = obecny + 1;
    cout << koniec << "\n";
    v.push_back({obecny,koniec});
    k-=T[obecny];
    obecny--;
    while(k > 0)
    {
        while(T[obecny] > k)
            obecny -= 3;
        v.push_back({obecny,koniec});
        k -= T[obecny];
    }
    for(int i = 0 ; i < v.size() ; i++)
    {
        int z = v[i].first;
        int dokad = v[i].second;
        if(t[z].first == 0)
            t[z].first = dokad;
        else
            t[z].second = dokad;
    }
    for (int i = 1 ; i <= koniec ; i++)
    {
        if(t[i].first == 0)
            cout <<-1;
        else
            cout<<t[i].first;
        cout << " ";
        if(t[i].second == 0)
            cout << -1;
        else
            cout << t[i].second;
        cout<<"\n";
    }
}