Submission #933848

# Submission time Handle Problem Language Result Execution time Memory
933848 2024-02-26T12:01:30 Z alexander707070 Worst Reporter 3 (JOI18_worst_reporter3) C++14
0 / 100
174 ms 34128 KB
#include<bits/stdc++.h>
#define MAXN 500007
using namespace std;

struct qr{
    int t,l,r,id;

    inline friend bool operator < (qr fr,qr sc){
        return fr.t<sc.t;
    }
};

int n,q,t,l,r,tim,ans[MAXN],e[MAXN],d[MAXN];
int pos[MAXN],len[MAXN],pt,br,from,to;
qr query[MAXN];

int calc(int a,int b,int c,int d){
    if(b<c or a>d)return 0;
    if(a>=c and b<=d)return b-a+1;
    if(a>=c)return d-a+1;
    if(b<=d)return b-c+1;
}

int main(){

    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);

    cin>>n>>q;
    for(int i=1;i<=n;i++){
        cin>>e[i];
    }

    len[0]=1;
    for(int i=n;i>=1;i--){
        if(e[i]<=e[i-1])br++;
        else{
            pt++;
            len[pt]=br+1;
            pos[pt]=-i;
            d[pt]=e[i];
            br=0;
        }
    }

    for(int i=1;i<=q;i++){
        cin>>t>>l>>r;
        query[i]={t,l,r,i};
    }

    reverse(pos+1,pos+pt+1);
    reverse(len+1,len+pt+1);
    reverse(d+1,d+pt+1);

    sort(query+1,query+q+1);

    for(int i=1;i<=q;i++){

        while(tim<query[i].t){
            tim++; pos[0]++;

            for(int f=1;f<=pt;f++){
                if((pos[f-1]-len[f-1]+1)-pos[f]>=d[f]+1){
                    pos[f]=(pos[f-1]-len[f-1]+1)-1;
                }else break;
            }
        }

        for(int f=0;f<=pt;f++){
            from=pos[f]-len[f]+1; to=pos[f];
            ans[query[i].id]+=calc(from,to,query[i].l,query[i].r);
        }
    }

    for(int i=1;i<=q;i++){
        cout<<ans[i]<<"\n";
    }

    return 0;
}

Compilation message

worst_reporter3.cpp: In function 'int calc(int, int, int, int)':
worst_reporter3.cpp:22:1: warning: control reaches end of non-void function [-Wreturn-type]
   22 | }
      | ^
# Verdict Execution time Memory Grader output
1 Runtime error 174 ms 34128 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 3 ms 10740 KB Output is correct
2 Runtime error 10 ms 21340 KB Execution killed with signal 11
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 174 ms 34128 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -