結果

問題 No.2408 Lakes and Fish
ユーザー vjudge1vjudge1
提出日時 2024-05-01 23:27:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 848 bytes
コンパイル時間 2,334 ms
コンパイル使用メモリ 202,824 KB
実行使用メモリ 813,952 KB
最終ジャッジ日時 2024-05-01 23:27:45
合計ジャッジ時間 3,792 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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] >> B[i] >> W[i];
        }

        long long max_magic = 0;
        for (int i = 0; i < M; ++i) {
            long long sun_magic = 0, shade_magic = 0;
            for (int j = 0; j < N; ++j) {
                if (F[i] <= L[j]) {
                    sun_magic += B[i];
                } else {
                    shade_magic += W[i];
                }
            }
            max_magic = max(max_magic, sun_magic - shade_magic);
        }

        cout << max_magic << endl;
    }

    return 0;
}
0