結果

問題 No.2408 Lakes and Fish
ユーザー vjudge1vjudge1
提出日時 2024-05-02 00:05:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,396 bytes
コンパイル時間 2,307 ms
コンパイル使用メモリ 202,856 KB
実行使用メモリ 823,252 KB
最終ジャッジ日時 2024-11-22 08:38:14
合計ジャッジ時間 43,499 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 2 ms
9,088 KB
testcase_04 MLE -
testcase_05 MLE -
testcase_06 RE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 MLE -
testcase_13 TLE -
testcase_14 MLE -
testcase_15 TLE -
testcase_16 MLE -
testcase_17 TLE -
testcase_18 MLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main() {
    int T;
    cin >> T;

    while (T--) {
        int N, M;
        cin >> N >> M;

        vector<int> L(N);
        for (int i = 0; i < N; ++i) {
            cin >> L[i];
        }

        vector<int> F(M), B(M), W(M);
        for (int i = 0; i < M; ++i) {
            cin >> F[i];
        }
        for (int i = 0; i < M; ++i) {
            cin >> B[i];
        }
        for (int i = 0; i < M; ++i) {
            cin >> W[i];
        }

        long long sun_strength = 0, total_moves = 0;
        for (int i = 0; i < M; ++i) {
            if (F[i] <= L[0]) {
                sun_strength += B[i];
            } else {
                sun_strength += W[i];
            }
        }

        long long max_magic = sun_strength;
        for (int i = 1; i < N; ++i) {
            long long new_sun_strength = sun_strength;
            for (int j = 0; j < M; ++j) {
                if (F[j] <= L[i]) {
                    new_sun_strength += B[j];
                } else {
                    new_sun_strength += W[j];
                }
            }

            long long moves = abs(L[i] - L[i - 1]);
            max_magic = max(max_magic, new_sun_strength - moves);
            sun_strength = new_sun_strength;
            total_moves += moves;
        }

        cout << max_magic - total_moves << endl;
    }

    return 0;
}

0