QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#574202#9313. Make MaxZJH1214WA 30ms4380kbC++20932b2024-09-18 21:04:432024-09-18 21:04:43

Judging History

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

  • [2024-09-18 21:04:43]
  • 评测
  • 测评结果:WA
  • 用时:30ms
  • 内存:4380kb
  • [2024-09-18 21:04:43]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
#define IOS ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
const int N=2e5+5;
void solve()
{
    int n;
    cin>>n;
    vector<int>a(n+2);
    for(int i=1;i<=n;i++) cin>>a[i];
    a[0]=1e9+10,a[n+1]=1e9+10;
    vector<int>stk;
    stk.push_back(0);
    ll ans=0;
    for(int i=1;i<=n;i++)
    {
        while(!stk.empty()&&a[stk.back()]<a[i])
        {
            stk.pop_back();
        }
        ans+=i-stk.back()-1;
        stk.push_back(i);
    }
    stk.clear();
    stk.push_back(n+1);
    for(int i=n;i>=1;i--)
    {
        while(!stk.empty()&&a[stk.back()]<a[i])
        {
            stk.pop_back();
        }
        if(a[stk.back()]==a[i]) ans+=stk.back()-i-1;
        stk.push_back(i);
    }
    cout<<ans<<endl;
}
int main()
{
    IOS;
    int t;
    cin>>t;
    while(t--)
        solve();
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 3832kb

input:

4
2
1 2
2
2 2
7
1 1 1 2 2 2 2
3
1 2 3

output:

1
0
3
3

result:

ok 4 number(s): "1 0 3 3"

Test #2:

score: -100
Wrong Answer
time: 30ms
memory: 4380kb

input:

2
198018
875421126 585870339 471894633 383529988 625397685 944061047 704695631 105113224 459022561 760848605 980735314 847376362 980571959 329939331 644635272 326439858 752879510 837384394 175179068 182094523 397239381 1199016 185143405 279638454 252374970 822030887 860312140 137248166 993229443 164...

output:

2069924
1909959

result:

wrong answer 1st numbers differ - expected: '4084978', found: '2069924'