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
#include <cstdio>
#include <algorithm>
#include <vector>
#include <utility>

const int N=300001;

long long szpro[N];
long long sum_pre[N];


using namespace std;

vector< pair<int,long long>  > stack;

void count_sum_pre(int n) {
    sum_pre[0]=0;
    for(int i=0; i<n; ++i) sum_pre[i+1]=szpro[i+1]+sum_pre[i];
}

long long sum_w(int i, int j) {
    return sum_pre[j]-sum_pre[i-1];
}

pair<int,long long> how_many(int i, long long s) {
    if(i==1) {
        if(s<=0) return make_pair(0,0);
        if(szpro[1] >= s) return make_pair(1,szpro[1]);
        return make_pair(-1,-1);
    }
    int l=1; int r=i; long long ss=s;
    int total=0;
    long long total_sum=0;
    while(l+1 < r) {
        int mid=(l+r)/2;
        if(sum_w(mid,r) >= ss) l=mid;
        else {  total+=r-mid+1; total_sum+=sum_w(mid,r); ss-=sum_w(mid,r); r=mid-1; }
    }
    if(total_sum >= s) return make_pair(total,total_sum);
    total_sum+=szpro[r]; total+=1;
    if(total_sum >=s ) return make_pair(total,total_sum);
    if(r > l) { total_sum+=szpro[l]; total+=1;
    if(total_sum >=s ) return make_pair(total,total_sum); }
    return make_pair(-1,-1);
}

pair<int,long long> how_many_st(int i, long long s) {
    if(s <= 0) return make_pair(0,0);
    int ibeg=i;
    pair<int, long long> res=how_many(i,s);
    if(res.first==-1) return res;
    if(stack.empty()) {
        stack.push_back(make_pair(i-res.first+1,ibeg));
        return res;
    }
    int total=0;
    long long total_sum=0;
    int j=stack.back().second;
    int jb=stack.back().first;
    while(j >= (i-res.first) ) {
       total+=i-j;
       total_sum+=sum_w(j+1,i);
       stack.pop_back();
       i=jb-1;
       res=how_many(i,s-total_sum);
       if(res.first==-1) return res;
       if(stack.empty()) {
           stack.push_back(make_pair(jb-res.first,ibeg));
           return make_pair(total+res.first,total_sum+res.second);
       }
       j=stack.back().second;
       jb=stack.back().first;
    }
    stack.push_back(make_pair(i-res.first+1,ibeg));
    return make_pair(total+res.first,total_sum+res.second);

}

int main()
{
    int n,q;
       scanf("%d",&n);
       szpro[0]=0;
       for(int i=0; i<n; ++i)
           scanf("%lld",szpro+i+1);

    sort(szpro+1,szpro+n+1);
    count_sum_pre(n);

    scanf("%d",&q);
    int que;
    long long w,ww;
    for(int j=0; j<q; ++j ) {
        scanf("%d",&que);
        if(que==1) {
            scanf("%lld%lld",&w,&ww);
            //printf("%d,%d",w,ww);

            int total=0;
            int i=(lower_bound(szpro+1,szpro+n+1,w)-(szpro+1));
            //printf("i=%d\n",i);
            pair<int,long long> res;
            bool wypad=false;
            //while
            while(i<n && ww > szpro[i+1]+1) {
                //printf("i=%d\n",i);
                long long goal=szpro[i+1]+1;
                //printf("goal-w=%d\n",goal-w);
                res=how_many_st(i,goal-w);
                if(res.first==-1) {
                    wypad=true;
                    break;
                }
                //printf("%d, %d\n",res.first,res.second);
                total+=res.first;
                w+=res.second;
                i=(lower_bound(szpro+1,szpro+n+1,w)-(szpro+1));
            }

            if(wypad) printf("%d\n",-1);
            else {
                //printf("ipo=%d\n",i);
                res=how_many_st(i,ww-w);
                //printf("%d, %d\n",res.first,res.second);
                if(res.first==-1) printf("%d\n",-1);
                else {
                    total+=res.first;
                    printf("%d\n",total);
                }
            }
            stack.clear();
        }
        else
            scanf("%lld",&w);
    }

 //   for(int i=1; i<=n; ++i)
 //       printf(" %d",szpro[i]);
 //   printf("\n");

 //   for(int i=1; i<=n; ++i)
 //       printf(" %d",sum_pre[i]);
 //   printf("\n");


//    pair<int,int> res=how_many_st(5,12);
//    printf("%d , %d\n", res.first,res.second);
//    res=how_many_st(7,26);
//    printf("%d , %d\n", res.first,res.second);
//    res=how_many_st(8,29);
//    printf("%d , %d\n", res.first,res.second);
    //res=how_many(5,3);
    //printf("%d , %d\n", res.first,res.second);
    //res=how_many(5,15);

    //printf("%d , %d\n", res.first,res.second); */
    return 0;
}