QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#312573#5146. SkillsXiaoTieTL 146ms156148kbC++202.7kb2024-01-24 00:31:462024-01-24 00:31:47

Judging History

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

  • [2024-01-24 00:31:47]
  • 评测
  • 测评结果:TL
  • 用时:146ms
  • 内存:156148kb
  • [2024-01-24 00:31:46]
  • 提交

answer

#include <bits/stdc++.h>
#pragma GCC optimize(3)
#define int long long
#define llu unsigned long long
#define endl "\n"
#define inf 0x3f3f3f3f
#define debug cout << "****************" << endl
using namespace std;

typedef pair<int, int> PII;

const int N = 1010;

const int m = 210;
// int dp[210][210][210];
// int f[210][210][210];

void solve()
{
    int n;
    cin >> n;
    vector<vector<vector<int>>> dp(m + 2, vector<vector<int>>(m + 2, vector<int>(m + 2, 0)));
    vector<vector<vector<int>>> f(m + 2, vector<vector<int>>(m + 2, vector<int>(m + 2, 0)));

    int ans = 0;
    vector<array<int, 4>> a(n + 7);
    for (int i = 1; i <= n; i++)
        cin >> a[i][1] >> a[i][2] >> a[i][3];

    for (int i = 1; i <= n; i++)
    {
        for (int j = 1; j <= 3; j++)
        {
            for (int t1 = 0; t1 * t1 <= 10010 && t1 <= i; t1++)
            {
                for (int t2 = 0; t2 * t2 <= 10010 && t2 <= i; t2++)
                {
                    if (j == 1)
                    {
                        ans = max(ans, dp[1][(t1 ? t1 + 1 : 0)][t2 ? t2 + 1 : 0] = max(dp[1][(t1 ? t1 + 1 : 0)][t2 ? t2 + 1 : 0], f[1][t1][t2] + a[i][1] - t1 - t2));
                        ans = max(ans, dp[1][2][t2 ? t2 + 1 : 0] = max(dp[1][2][t2 ? t2 + 1 : 0], f[t1][1][t2] + a[i][1] - 1 - t2));
                        ans = max(ans, dp[1][t2 ? t2 + 1 : 0][2] = max(dp[1][t2 ? t2 + 1 : 0][2], f[t1][t2][1] + a[i][1] - 1 - t2));
                    }
                    if (j == 2)
                    {
                        ans = max(ans, dp[2][1][t2 ? t2 + 1 : 0] = max(dp[2][1][t2 ? t2 + 1 : 0], f[1][t1][t2] + a[i][2] - t2 - 1));
                        ans = max(ans, dp[(t1 ? t1 + 1 : 0)][1][t2 ? t2 + 1 : 0] = max(dp[(t1 ? t1 + 1 : 0)][1][t2 ? t2 + 1 : 0], f[t1][1][t2] + a[i][2] - t1 - t2));
                        ans = max(ans, dp[(t1 ? t1 + 1 : 0)][1][2] = max(dp[(t1 ? t1 + 1 : 0)][1][2], f[t1][t2][1] + a[i][2] - t1 - 1));
                    }
                    if (j == 3)
                    {
                        ans = max(ans, dp[2][(t1 ? t1 + 1 : 0)][1] = max(dp[2][(t1 ? t1 + 1 : 0)][1], f[1][t1][t2] + a[i][3] - t1 - 1));
                        ans = max(ans, dp[(t1 ? t1 + 1 : 0)][2][1] = max(dp[(t1 ? t1 + 1 : 0)][2][1], f[t1][1][t2] + a[i][3] - 1 - t1));
                        ans = max(ans, dp[(t1 ? t1 + 1 : 0)][t2 ? t2 + 1 : 0][1] = max(dp[(t1 ? t1 + 1 : 0)][t2 ? t2 + 1 : 0][1], f[t1][t2][1] + a[i][3] - t1 - t2));
                    }
                }
            }
        }
        f = dp;
    }
    cout << ans << endl;
}

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

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 146ms
memory: 156148kb

input:

2
3
1 1 10
1 10 1
10 1 1
5
1 2 3
6 5 4
7 8 9
12 11 10
13 14 15

output:

26
41

result:

ok 2 number(s): "26 41"

Test #2:

score: -100
Time Limit Exceeded

input:

1
200
6219 3608 2383
1139 2158 8611
6721 8216 8887
8736 6707 9755
7210 248 167
3849 276 8050
971 5062 1914
8290 1562 6017
8993 7990 3460
6323 6099 757
7652 4740 6117
6560 4206 180
3705 8906 5752
9619 8939 9696
793 6680 1777
384 3606 8772
9258 3906 709
4396 5083 6614
6057 4410 3132
8596 825 7437
6098...

output:


result: