QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#720907#9141. Array SpreadhuaxiamengjinWA 2ms13244kbC++142.8kb2024-11-07 14:39:112024-11-07 14:39:12

Judging History

你现在查看的是最新测评结果

  • [2024-11-07 14:39:12]
  • 评测
  • 测评结果:WA
  • 用时:2ms
  • 内存:13244kb
  • [2024-11-07 14:39:11]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
constexpr int M=6005,mod=998244353;
int n,m,l[M],r[M],mn[M][M],mx[M][M];
struct info{int p,q;
    bool operator <(const info &a) const
        {return 1ll*p*a.q<1ll*a.p*q;}
}ans;
int tot,a[M];
int qpow(int x,int n){
    int s=1; while (n){
        if (n&1) s=1ll*s*x%mod;
        x=1ll*x*x%mod; n>>=1;
    } return s;
}
int test,TT;
pair<int,int>b[100100];
vector<int>g[100100];
int f[100100];
void solve(){
    test++;
    cin>>n>>m;ans={1,1};tot=0;
    for (int i=1;i<=m;i++) {
        cin>>l[i]>>r[i],a[++tot]=l[i],a[++tot]=r[i],a[++tot]=r[i]-1;
    }
    sort(a+1,a+tot+1);
    tot=unique(a+1,a+tot+1)-a-1;
    for (int i=1;i<=tot;i++)
    g[i].clear();
    for (int i=1;i<=m;i++)
    l[i]=lower_bound(a+1,a+tot+1,l[i])-a,
    r[i]=lower_bound(a+1,a+tot+1,r[i])-a,
    g[r[i]].push_back(l[i]);
    n=tot;
    // cout<<tot<<"******\n";
    for (int i=0;i<=n+1;i++)
        for (int j=0;j<=n+1;j++)
            mn[i][j]=0x3f3f3f3f,mx[i][j]=0;
    for (int i=1;i<=m;i++) 
        mx[l[i]][r[i]]=mn[l[i]][r[i]]=1;
    for (int len=n-1;len;len--){
        for (int l=1;l+len-1<=n;l++){
            int r=l+len-1;
            mn[l][r]=min(mn[l][r],min(mn[l][r+1],mn[l-1][r]));
        }
    }
    for (int l=n;l;l--){
        int st=0;
        for (int r=l;r<=n;r++){
            mx[l][r]=mx[l][r-1];
            for (auto k:g[r])if(k>=l){
                mx[l][r]=max(mx[l][r],max(mx[l][k-1],mx[l][k-1])+1);
                if(a[k-1]+1==a[k])mn[l][r]=min(mn[l][r],mn[l][k-1]+1);
                else {
                    int tmp=lower_bound(b+1,b+st+1,make_pair(k,0))-b;
                    // cout<<l<<"***"<<r<<" "<<k<<" "<<b[tmp].first<<"\n";
                    if(tmp<=st&&tmp>=1)mn[l][r]=min(mn[l][r],b[tmp].second+1);
                }
            }
            while(st&&mn[l][r]<=b[st].second)st--;
            b[++st]=make_pair(r,mn[l][r]);
        }
        for (int r=n-1;r>=l;r--)mn[l][r]=min(mn[l][r+1],mn[l][r]);
    }
    for (int i=1;i<=n;i++)
        for (int j=i;j<=n;j++){
        // cout<<i<<" "<<j<<" "<<mx[i][j]<<" "<<mn[i][j]<<"\n";
            if (mx[i][j])
            ans=max(ans,{mx[i][j],mn[i][j]});
        }
    if(ans.p==1&&ans.q==1){
        f[0]=1;
        for (int i=1;i<=n+1;i++){
            int rs=i-1,ls=0;f[i]=0;
            for (int j=1;j<=m;j++)
            if(r[j]>=i)rs=min(rs,l[j]-1);
            for (int j=i-1;j>=ls;j--){
                for (auto k:g[j])ls=max(ls,k);
                if(rs>=j)f[i]|=f[j];
            }
        }
        if(f[n+1]==0)ans={3,2};
    }
    cout<<1ll*ans.p*qpow(ans.q,mod-2)%mod<<'\n';
}
int main(){
    ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
    int T;cin>>T;TT=T;
    while (T--) solve();return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 2ms
memory: 10148kb

input:

3
3 3
1 3
2 3
1 2
12 6
2 3
5 7
1 9
4 8
1 2
7 11
4 5
3 4
2 3
1 2
4 4
1 1

output:

1
2
499122178

result:

ok 3 number(s): "1 2 499122178"

Test #2:

score: 0
Accepted
time: 0ms
memory: 9348kb

input:

2000
1000000000 1
259923446 367011266
1000000000 1
882434225 971573327
1000000000 1
41585677 470369580
1000000000 1
371902212 947250194
1000000000 1
787209148 924205796
1000000000 1
259074809 960876164
1000000000 1
148079314 188254573
1000000000 1
940091047 948318624
1000000000 1
40636497 743979446
...

output:

1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
...

result:

ok 2000 numbers

Test #3:

score: 0
Accepted
time: 0ms
memory: 10244kb

input:

1000
1000000000 5
575330909 661595447
708422488 913945134
658050911 930246647
786571892 904549453
851755566 969150871
1000000000 2
198072104 844159589
8876188 644559580
1000000000 2
740802634 976972118
783909534 898449184
1000000000 2
871819537 941611957
465883854 640988372
1000000000 1
99458969 462...

output:

1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
2
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
2
1
1
1
1
...

result:

ok 1000 numbers

Test #4:

score: -100
Wrong Answer
time: 0ms
memory: 13244kb

input:

500
1000000000 13
964546318 987364574
367845944 907446075
259314137 890312338
458318546 959971971
353677471 522446336
782931403 845199078
514387878 786979588
532634932 793056892
905393511 960628299
747423889 986373313
796099347 833069525
906969434 971335651
574582540 647534593
1000000000 6
987712893...

output:

3
1
3
1
1
1
1
1
1
3
2
1
1
1
3
1
2
1
1
2
1
3
1
1
1
2
1
2
2
1
1
1
1
1
1
1
3
1
1
1
1
2
1
1
1
1
2
1
1
1
1
1
2
1
1
1
1
1
1
1
2
2
1
1
3
1
2
1
1
1
1
2
3
1
1
1
1
1
1
1
3
2
1
3
2
1
1
1
1
1
1
1
1
1
1
1
1
1
2
1
2
1
1
1
1
1
1
1
1
1
2
1
2
1
1
1
3
1
1
1
1
1
1
1
2
1
1
2
1
1
1
2
1
4
1
2
1
4
1
3
1
1
1
1
1
2
1
1
4
1
...

result:

wrong answer 455th numbers differ - expected: '1', found: '499122178'