QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#592890 | #9313. Make Max | Ail_ijyq | WA | 109ms | 13572kb | C++14 | 1.8kb | 2024-09-27 09:30:36 | 2024-09-27 09:30:36 |
Judging History
answer
#include <bits/stdc++.h>
#define int long long
#define PII pair<int,int>
using namespace std;
void solve()
{
int n;
cin>>n;
vector<int> a(n+1);
for(int i=0;i<n;i++)
{
cin>>a[i];
}
int s=1;
vector<PII> b(1);
for(int i=0;i<n;i++)
{
if(a[i]==a[i+1]) s++;
else{
b.emplace_back(a[i],s);
s=1;
}
}
n=b.size()-1;
vector<int> stk;
vector<int> ls(n+1);//左儿子
vector<int> rs(n+1);//右儿子
int root=0;
for(int i=1;i<=n;i++)
{
//i位于root 或 右链 末端
int j=0;
while(stk.size()&&b[stk.back()].first<b[i].first)
{
j=stk.back();
stk.pop_back();
}//找到第一个比j大的val
if(!stk.size())//如果前面没有比他大的数,那么更新root
{
root = i;
}
//将原树中 以j为root的子树先拿下来
else rs[stk.back()] = i;//将i放到现在的最右端
ls[i]=j;//将拿下来的root放到右链末端的左儿子上
stk.push_back(i);
}
queue<PII> que;
que.push({root,0});
int res=0;
while(!que.empty())
{
int x=que.front().first;
int v=que.front().second;
que.pop();
// cout<<x<<' '<<v<<endl;
// res+=v;
if(ls[x]!=0)
{
if(b[ls[x]].first!=b[x].first) que.push({ls[x],v+1}),res+=(v+1)*b[ls[x]].second;
else que.push({ls[x],v});
}
if(rs[x]!=0)
{
if(b[rs[x]].first!=b[x].first) que.push({rs[x],v+1}),res+=(v+1)*b[rs[x]].second;
else que.push({rs[x],v});
}
}
cout<<res<<endl;
}
signed main()
{
int t=1;
cin>>t;
while(t--)
solve();
}
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 3600kb
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: 0
Accepted
time: 109ms
memory: 13572kb
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:
4084978 4130372
result:
ok 2 number(s): "4084978 4130372"
Test #3:
score: -100
Wrong Answer
time: 65ms
memory: 12732kb
input:
2 195768 3086 1582 7854 5577 5243 2734 8054 4805 5686 7065 5555 2410 6240 7589 2889 3745 8094 9147 9438 1252 5497 5786 6655 4437 3933 2579 5722 9512 3117 1742 5362 2068 1853 4069 9231 1126 3991 420 2571 5517 3063 7279 8085 6111 5503 5980 50 6003 244 9684 6343 6517 1598 5223 5520 982 3932 1093 1149 7...
output:
3060013 2996656
result:
wrong answer 1st numbers differ - expected: '3061429', found: '3060013'