QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#573766#9313. Make MaxTrspntWA 27ms5368kbC++231.2kb2024-09-18 19:54:542024-09-18 19:54:56

Judging History

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

  • [2024-09-18 19:54:56]
  • 评测
  • 测评结果:WA
  • 用时:27ms
  • 内存:5368kb
  • [2024-09-18 19:54:54]
  • 提交

answer

#include <bits/stdc++.h>

#define int long long

using namespace std;
typedef pair<int,int> PII;
const int N = 2e5+10,mod = 1e9+7,M = 4e3+10,INF = 1e10;

void solve()
{
    int n;
    cin>>n;
    vector<int>a(n+2);
    for(int i=1;i<=n;i++)cin>>a[i];
    int maxv=-1;
    int cnt=0;//局部
    int sum=0;//全局
    int ans=0;
    a[0]=a[n+1]=1e10;
    for(int i=1;i<=n;i++)
    {
        if(a[i]>maxv)
        {
            ans+=sum;
            maxv=a[i];
        }
        else if(a[i]<a[i-1])
        {
            cnt=0;
        }
        else if(a[i]>a[i-1])
        {
            ans+=cnt;
        }
        cnt++;
        sum++;
    }
    sum=0;
    cnt=0;
    maxv=-1;
    for(int i=n;i;i--)
    {
        if(a[i]>maxv)
        {
            ans+=sum;
            maxv=a[i];
        }
        else if(a[i]<a[i+1])
        {
            cnt=0;
        }
        else if(a[i]>a[i+1])
        {
            ans+=cnt;
        }
        cnt++;
        sum++;
    }
    cout<<ans<<"\n";
}

signed main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int T=1;
    cin>>T;
    //init();
    while(T--)solve();
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3836kb

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: 27ms
memory: 5368kb

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:

627728
785871

result:

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