結果

問題 No.2330 Eat Slime
ユーザー hitonanodehitonanode
提出日時 2023-05-28 15:07:55
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 860 ms / 4,000 ms
コード長 901 bytes
コンパイル時間 2,325 ms
コンパイル使用メモリ 136,540 KB
実行使用メモリ 41,296 KB
最終ジャッジ日時 2024-06-08 07:05:35
合計ジャッジ時間 22,526 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 805 ms
33,956 KB
testcase_08 AC 414 ms
27,588 KB
testcase_09 AC 798 ms
29,384 KB
testcase_10 AC 107 ms
7,888 KB
testcase_11 AC 66 ms
5,376 KB
testcase_12 AC 802 ms
31,360 KB
testcase_13 AC 782 ms
33,860 KB
testcase_14 AC 127 ms
7,056 KB
testcase_15 AC 435 ms
27,676 KB
testcase_16 AC 764 ms
29,772 KB
testcase_17 AC 833 ms
41,164 KB
testcase_18 AC 851 ms
41,296 KB
testcase_19 AC 860 ms
41,292 KB
testcase_20 AC 835 ms
41,292 KB
testcase_21 AC 834 ms
41,288 KB
testcase_22 AC 842 ms
41,160 KB
testcase_23 AC 837 ms
41,168 KB
testcase_24 AC 832 ms
41,288 KB
testcase_25 AC 843 ms
41,292 KB
testcase_26 AC 853 ms
41,292 KB
testcase_27 AC 851 ms
41,164 KB
testcase_28 AC 837 ms
41,292 KB
testcase_29 AC 842 ms
41,168 KB
testcase_30 AC 834 ms
41,292 KB
testcase_31 AC 848 ms
41,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
using lint = long long;
#define FOR(i, begin, end) for(int i=(begin),i##_end_=(end);i<i##_end_;i++)
#define REP(i, n) FOR(i,0,n)

#include <atcoder/convolution>

int main() {

    cin.tie(nullptr), ios::sync_with_stdio(false);
    int N, M, X;

    cin >> N >> M >> X;

    constexpr int C = 5;

    vector onset(C, vector<lint>(N + 1)), match(C, vector<lint>(N));
    REP(i, N) {
        int c;
        cin >> c;
        onset.at(c - 1).at(i) = 1;
    }

    while (M--) {
        int a, b, y;
        cin >> a >> b >> y;
        match.at(b - 1).at(N - a) += y;
    }

    REP(c, C) match.at(c) = atcoder::convolution_ll(match.at(c), onset.at(c));

    lint ret = 0;
    REP(i, N + 1) {
        lint tmp = i * lint(X);
        for (const auto &v : match) tmp += v.at(N - 1 + i);
        ret = max(ret, tmp);
    }
    cout << ret << endl;
}
0