QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#575166 | #9313. Make Max | YFffffffff | WA | 187ms | 17204kb | C++23 | 1.3kb | 2024-09-19 11:01:41 | 2024-09-19 11:01:42 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define int long long
void op()
{
int n;
cin>>n;
vector<int>a(n+1,0);
for(int i=1;i<=n;cin>>a[i++]);
stack<int>st;
int reap=0;
map<int,int>num;
vector<bool>up(n+1,0);
///当前是否以已经发现比这个位置的数字更加大的数字
for(int i=1;i<=n;i++)
{
int last_num=num[a[i]];
if(last_num)
{
if(!up[last_num])///它们之间没有比它们大的数字
reap+=i-last_num-1;///去重
}
num[a[i]]=i;
while(st.size() and a[i]>=a[st.top()])
{
up[st.top()]=1;
st.pop();
}
}
int ans=-reap;
while(st.size())st.pop();
for(int i=1;i<=n;i++)
{
while(st.size() and a[st.top()]<=a[i])
{
st.pop();
}
ans+=st.size();
st.push(i);
}
while(st.size())st.pop();
for(int i=n;i>=1;i--)
{
while(st.size() and a[st.top()]<=a[i])
{
st.pop();
}
ans+=st.size();
st.push(i);
}
cout<<ans<<endl;
}
signed main(void)
{
ios::sync_with_stdio(0);
cin.tie(0),cout.tie(0);
int t;
cin>>t;
while(t--)
op();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3628kb
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: 187ms
memory: 17204kb
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:
2854917 2738080
result:
wrong answer 1st numbers differ - expected: '4084978', found: '2854917'