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
#include<bits/stdc++.h>
#include "message.h"
#include "krazki.h"

using namespace std;

#define ZAK 2000000

int wysokosc, ID, koniec=0, kon2=0;
long long kregi[2000010];
vector<long long> v;
bool czy=1;

void init( int gdzie, long long poprzedni = numeric_limits<long long>::max() ) {
    if( gdzie == -1 ) {
        czy=0;
        if( ID<99 ) {
            PutInt( ID+1, -1 );
            PutLL( ID+1, 0 );
            Send( ID+1 );
        }
        return;
    }
    kregi[0] = -poprzedni;
    int i;
    for( i=1; i<=ZAK && gdzie>0; i++, gdzie-- ) {
        kregi[i] = max( kregi[i-1], -HoleDiameter(gdzie) );
        koniec++;
    }
    if( gdzie ) {
        PutInt( ID+1, gdzie );
        PutLL( ID+1, kregi[koniec] );
        Send( ID+1 );
    } else {
        if( ID<99 ) {
            PutInt( ID+1, -1 );
            Send( ID+1 );
        }
    }
    if( ID != 0 ) {
        PutLL( 0, kregi[1] );
        Send( 0 );
    }
}

void algo( long long x ) {
    if( x == 1 ) {
        czy = 0;
        return;
    }
    auto it = upper_bound( kregi+1, kregi+koniec+1, x );
    it--;
    koniec = it-kregi-1;
    if( ID != 0 ) {
        PutInt( 0, koniec );
        PutLL( 0, kregi[koniec] );
        Send( 0 );
    }
}

void glowny() {
    wysokosc = PipeHeight();
    init( wysokosc );
    v.push_back( kregi[1] );
    for( int i=1, j=wysokosc-ZAK; j>0; i++, j-=ZAK ) {
        Receive( i );
        v.push_back( GetLL( i ) );
        //v.push_back( kregi[1] );
    }
    long long x;
    int rozmiar = v.size(), nr;
    vector<long long>::iterator it;
    int i, nd = NumberOfDiscs();
    for( i=1; i<=nd && rozmiar!=0 && koniec != 0; i++ ) {
        x = -DiscDiameter( i );
        it = upper_bound( v.begin(), v.begin()+rozmiar, x );
        if( it == v.begin() ) {
            //cout << *it << " ";
            cout << 0;
            return;
        }
        it--;
        nr = it-v.begin();
        if( nr ) {
            PutLL( nr, x );
            Send( nr );
        } else {
            algo( x );
        }
        if( nr != 0 ) {
            Receive( nr );
            int gg = GetInt( nr );
            if( gg == 0 ) {
                rozmiar = nr;
                kon2 = ZAK;
                GetLL( nr );
            } else {
                *it = GetLL( nr );
                rozmiar = nr+1;
                kon2 = gg;
            }
        }
        kon2 = koniec;
        while( v.size() != rozmiar ) {
            PutInt( v.size()-1, 1 );
            Send( v.size()-1 );
            v.pop_back();
        }

    }
    if( i <= nd ) {
        cout << 0;
    } else {
        cout << wysokosc-(rozmiar-1)*ZAK-kon2;
    }
}

void poboczny() {
    Receive( ID-1 );
    init( GetInt( ID-1 ), GetLL( ID-1 ) );
    while( czy ) {
        Receive( 0 );
        algo( GetLL( 0 ) );
    }
}

int main() {
    ID = MyNodeId();
    //ID = 0;
    if( ID==0 ) {
        glowny();
    } else {
        poboczny();
    }

    return 0;
}/*
3 2
4
3
6
4
4
*/