結果

問題 No.2330 Eat Slime
ユーザー dyktr_06dyktr_06
提出日時 2023-04-13 21:28:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 879 ms / 4,000 ms
コード長 1,154 bytes
コンパイル時間 4,439 ms
コンパイル使用メモリ 266,508 KB
実行使用メモリ 34,816 KB
最終ジャッジ日時 2024-10-09 17:48:26
合計ジャッジ時間 25,571 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 1 ms
6,820 KB
testcase_07 AC 834 ms
28,652 KB
testcase_08 AC 425 ms
21,276 KB
testcase_09 AC 839 ms
23,948 KB
testcase_10 AC 108 ms
7,864 KB
testcase_11 AC 66 ms
6,816 KB
testcase_12 AC 825 ms
27,040 KB
testcase_13 AC 821 ms
28,104 KB
testcase_14 AC 130 ms
8,944 KB
testcase_15 AC 453 ms
22,744 KB
testcase_16 AC 803 ms
23,388 KB
testcase_17 AC 871 ms
34,684 KB
testcase_18 AC 873 ms
34,688 KB
testcase_19 AC 872 ms
34,684 KB
testcase_20 AC 870 ms
34,800 KB
testcase_21 AC 873 ms
34,752 KB
testcase_22 AC 870 ms
34,684 KB
testcase_23 AC 869 ms
34,688 KB
testcase_24 AC 873 ms
34,688 KB
testcase_25 AC 872 ms
34,688 KB
testcase_26 AC 872 ms
34,688 KB
testcase_27 AC 871 ms
34,816 KB
testcase_28 AC 871 ms
34,688 KB
testcase_29 AC 869 ms
34,672 KB
testcase_30 AC 871 ms
34,684 KB
testcase_31 AC 879 ms
34,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>

using namespace std;
using namespace atcoder;

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

    int n, m; cin >> n >> m;
    long long x; cin >> x;
    vector<int> c(n);
    for(int i = 0; i < n; i++){
        cin >> c[i]; c[i]--;
    }
    vector<int> a(m), b(m);
    vector<long long> y(m);
    for(int i = 0; i < m; i++){
        cin >> a[i] >> b[i] >> y[i];
        a[i]--, b[i]--;
    }
    vector<long long> res(n + 1);
    for(long long i = 0; i <= n; i++){
        res[i] = x * i;
    }
    vector<vector<long long>> q(5, vector<long long>(n));
    for(int i = 0; i < m; i++){
        q[b[i]][a[i]] += y[i];
    }
    for(int i = 0; i < 5; i++){
        vector<long long> p(n);
        for(int j = 0; j < n; j++){
            if(c[j] == i){
                p[j] += 1;
            }
        }
        reverse(q[i].begin(), q[i].end());
        vector<long long> r = convolution_ll(p, q[i]);
        for(int j = n - 1; j < 2 * n - 1; j++){
            res[j - n + 1] += r[j];
        }
    }
    long long ans = *max_element(res.begin(), res.end());
    cout << ans << endl;
}
0