QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#625571#6695. MatchingLianYanAC ✓48ms12104kbC++202.0kb2024-10-09 19:56:502024-10-09 19:56:51

Judging History

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

  • [2024-10-09 19:56:51]
  • 评测
  • 测评结果:AC
  • 用时:48ms
  • 内存:12104kb
  • [2024-10-09 19:56:50]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
#define endl '\n'
#define up(i, a, b) for (int i = (a); i <= (b); i++)
#define dn(i, a, b) for (int i = (a); i >= (b); i--)
typedef long long ll;
#define int long long
inline int read()
{
    int x = 0, f = 1;
    char ch = getchar();
    while (ch < 48 || ch > 57)
    {
        if (ch == '-')
            f = -1;
        ch = getchar();
    }
    while (ch >= 48 && ch <= 57)
    {
        x = (x << 1) + (x << 3) + (ch ^ 48);
        ch = getchar();
    }
    return x * f;
}
inline void write(int x)
{
    if (x < 0)
    {
        putchar('-');
        x = -x;
    }
    if (x > 9)
        write(x / 10);
    putchar(x % 10 + '0');
}
const int N = 1e5 + 10;
int a[N];
int t[N];
int k[N];

vector<int> vec[N];
map<int, int> mp;
int cnt = 0;
void solve()
{
    mp.clear();
    int n;
    cin >> n;
    cnt = 0;
    up(i, 1, n)
    {
        cin >> a[i];
        t[i] = a[i] - i;
        k[i] = 0;
    }
    up(i, 1, n)
    {
        if (mp.count(t[i]) == 0)
        {
            mp[t[i]] = ++cnt;
            vec[cnt].clear();
            k[cnt] = (t[i] << 1);
            vec[cnt].push_back(i);
        }
        else
        {
            vec[mp[t[i]]].push_back(i);
        }
    }

    int ans = 0;
    for (int i = 1; i <= cnt; i++)
    {
        int cont = 0;
        int cans = 0;
        for (auto it = vec[i].rbegin(); it != vec[i].rend(); it++)
        {
            cont++;
            cans += *it;
            if (cont == 2)
            {
                if (cans + k[i] > 0)
                    ans += cans + k[i];
                else
                    break;
                cont = 0;
                cans = 0;
            }
        }
    }
    cout << ans << endl;
}

signed main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cout.tie(nullptr);

    int t;
    cin >> t;
    while (t--)
        solve();

    return 0;
}

这程序好像有点Bug,我给组数据试试?

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

3
9
3 -5 5 6 7 -1 9 1 2
3
-5 -4 -3
3
1 10 100

output:

30
0
0

result:

ok 3 number(s): "30 0 0"

Test #2:

score: 0
Accepted
time: 48ms
memory: 12104kb

input:

5504
9
-1 -7 -6 -5 -4 -3 5 -1 0
5
999999995 999999993 999999995 999999995 999999995
5
3 -6 -5 -4 -2
4
-8 2 3 -5
4
-2 -1 0 1
9
-4 -9 3 -1 -1 -5 2 -3 -5
7
-1 -2 1 2 3 4 3
4
-2 5 2 -4
10
2 4 1 -3 -2 4 5 -3 0 -4
6
-1 0 1 2 4 -3
5
-4 -3 -2 -1 0
4
-1 0 1 2
8
1 0 -4 -1 0 -5 -3 -5
2
5 6
8
-4 -3 -2 -1 0 1 2 ...

output:

4
1999999988
0
5
1
1
11
0
9
3
0
3
0
11
6
9
0
1999999989
13
1
11
7
1999999981
40
0
11
0
6
0
0
7
9
1
15
4
3
0
7
23
0
5
1999999997
0
3
5999999976
3
16
5999999943
5999999933
5
0
11
0
10
12
0
6
8
3999999982
12
0
7
0
0
3
3
0
1999999994
3999999972
1
0
16
0
0
0
7
2
0
8
0
5999999964
16
0
1
1999999995
28
0
54...

result:

ok 5504 numbers