結果

問題 No.2330 Eat Slime
ユーザー dyktr_06dyktr_06
提出日時 2023-04-13 21:30:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 258 ms / 4,000 ms
コード長 1,097 bytes
コンパイル時間 4,826 ms
コンパイル使用メモリ 272,168 KB
実行使用メモリ 19,376 KB
最終ジャッジ日時 2024-10-09 17:49:03
合計ジャッジ時間 11,408 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 232 ms
16,384 KB
testcase_08 AC 113 ms
11,504 KB
testcase_09 AC 230 ms
15,580 KB
testcase_10 AC 40 ms
6,820 KB
testcase_11 AC 36 ms
6,816 KB
testcase_12 AC 227 ms
15,884 KB
testcase_13 AC 222 ms
15,860 KB
testcase_14 AC 65 ms
6,864 KB
testcase_15 AC 138 ms
12,704 KB
testcase_16 AC 217 ms
14,844 KB
testcase_17 AC 251 ms
19,376 KB
testcase_18 AC 254 ms
19,012 KB
testcase_19 AC 256 ms
19,144 KB
testcase_20 AC 253 ms
19,012 KB
testcase_21 AC 254 ms
19,012 KB
testcase_22 AC 252 ms
19,136 KB
testcase_23 AC 258 ms
19,140 KB
testcase_24 AC 255 ms
19,012 KB
testcase_25 AC 255 ms
19,164 KB
testcase_26 AC 254 ms
19,016 KB
testcase_27 AC 256 ms
19,136 KB
testcase_28 AC 255 ms
19,140 KB
testcase_29 AC 255 ms
19,140 KB
testcase_30 AC 256 ms
19,012 KB
testcase_31 AC 255 ms
19,136 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;
    int 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<int> y(m);
    for(int i = 0; i < m; i++){
        cin >> a[i] >> b[i] >> y[i];
        a[i]--, b[i]--;
    }
    vector<int> res(n + 1);
    for(int i = 0; i <= n; i++){
        res[i] = x * i;
    }
    vector<vector<int>> q(5, vector<int>(n));
    for(int i = 0; i < m; i++){
        q[b[i]][a[i]] += y[i];
    }
    for(int i = 0; i < 5; i++){
        vector<int> p(n);
        for(int j = 0; j < n; j++){
            if(c[j] == i){
                p[j] += 1;
            }
        }
        reverse(q[i].begin(), q[i].end());
        vector<int> r = convolution(p, q[i]);
        for(int j = n - 1; j < 2 * n - 1; j++){
            res[j - n + 1] += r[j];
        }
    }
    int ans = *max_element(res.begin(), res.end());
    cout << ans << endl;
}
0