QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#763527 | #9313. Make Max | Gccccccc | WA | 99ms | 6000kb | C++14 | 773b | 2024-11-19 20:50:06 | 2024-11-19 20:50:06 |
Judging History
answer
//审题!!!
//最大操作数
//每个数把左右两边挨着的比自己小的数同化一遍
#include<bits/stdc++.h>
using namespace std;
#define int long long
int t;
int n;
int a[200010];
int sk[200010];
int top=0;
signed main(){
cin>>t;
while(t--){
cin>>n;
top=0;
for(int i=1;i<=n;i++){
cin>>a[i];
}
int ans=0;
for(int i=1;i<=n;i++){
while(top&&a[sk[top]]<a[i]) top--;
ans+=i-sk[top]-1;
sk[++top]=i;
}
top=0;
for(int i=n;i>=1;i--){
while(top&&a[sk[top]]<a[i]) top--;
if(a[sk[top]]==a[i])
//注意:如果相同两个数之间的数只加一次
ans+=sk[top]-i-1;
sk[++top]=i;
}
cout<<ans<<'\n';
}
return 0;
}
/*
4
2
1 2
2
2 2
7
1 1 1 2 2 2 2
3
1 2 3
*/
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 5684kb
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: 99ms
memory: 6000kb
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'