QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#579300#9313. Make MaxMuschuang123WA 32ms4604kbC++201.4kb2024-09-21 11:51:132024-09-21 11:51:14

Judging History

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

  • [2024-09-21 11:51:14]
  • 评测
  • 测评结果:WA
  • 用时:32ms
  • 内存:4604kb
  • [2024-09-21 11:51:13]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;

void solve()
{
    int n;
    cin >> n;
    vector<int> a(n + 1);
    for (int i = 1; i <= n; i++)
    {
        cin >> a[i];
    }

    vector<int> b(n);
    for (int i = 1; i < n; i++)
    {
        b[i] = a[i + 1] - a[i];
    }
    
    long long ans = 0;
    stack<pair<int, int>> st;
    for (int i = n - 1; i >= 1; i--)
    {
        if (b[i] > 0)
        {
            st.push(make_pair(i, b[i]));
        }
        else
        {
            while (b[i] < 0 && !st.empty())
            {
                ans += st.top().first + 1 - i;
                if (st.top().second > -b[i])
                {
                    ans++;
                    st.top().second -= -b[i];
                }
                else
                {
                    ans++;
                    b[i] += st.top().second;
                    st.pop();
                }
            }
            
            if (b[i] < 0 && st.empty())
                ans += n - i;
            
            
            // if (st.top().second == 0)
            //     st.pop();
        }
    }

    while (!st.empty())
    {
        ans += st.top().first;
        st.pop();
    }
    cout << ans << '\n';

}

int main()
{
    ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
    int tt = 1;
    cin >> tt;
    while(tt--)
        solve();
    return 0;
}

详细

Test #1:

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

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: 32ms
memory: 4604kb

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:

9811618270
9105669359

result:

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