結果

問題 No.2330 Eat Slime
ユーザー coindarwcoindarw
提出日時 2023-05-28 15:27:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,250 bytes
コンパイル時間 4,197 ms
コンパイル使用メモリ 273,192 KB
実行使用メモリ 23,948 KB
最終ジャッジ日時 2024-06-08 07:46:50
合計ジャッジ時間 10,785 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 224 ms
20,488 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 34 ms
5,376 KB
testcase_12 AC 225 ms
19,440 KB
testcase_13 AC 208 ms
20,448 KB
testcase_14 AC 59 ms
5,476 KB
testcase_15 AC 127 ms
15,840 KB
testcase_16 AC 206 ms
18,464 KB
testcase_17 WA -
testcase_18 AC 240 ms
23,940 KB
testcase_19 WA -
testcase_20 AC 243 ms
23,820 KB
testcase_21 WA -
testcase_22 AC 243 ms
23,820 KB
testcase_23 AC 237 ms
23,688 KB
testcase_24 AC 235 ms
23,812 KB
testcase_25 AC 238 ms
23,820 KB
testcase_26 AC 242 ms
23,688 KB
testcase_27 AC 247 ms
23,692 KB
testcase_28 AC 251 ms
23,816 KB
testcase_29 AC 237 ms
23,816 KB
testcase_30 AC 235 ms
23,816 KB
testcase_31 AC 246 ms
23,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#include <atcoder/all>
using ll = long long;
#define rep(i, n) for (int i = 0, i##_len = (n); i < i##_len; ++i)
#define reps(i, n) for (int i = 1, i##_len = (n); i <= i##_len; ++i)
#define rrep(i, n) for (int i = ((int)(n)-1); i >= 0; --i)
#define rreps(i, n) for (int i = ((int)(n)); i > 0; --i)
#define rep2(i, s, n) for (int i = (s); i < (int)(n); ++i)
#define repc2(i, s, n) for (int i = (s); i <= (int)(n); ++i)
constexpr int inf = 2000'000'000;
constexpr ll linf = 4000000000000000000ll;
constexpr ll M7 = 1000000007ll;
constexpr ll M09 = 1000000009ll;
constexpr ll M9 = 998244353ll;
#define all(v) begin(v), end(v)
#define rall(v) rbegin(v), rend(v)
using namespace std;
using namespace atcoder;
template <typename T>
inline ostream& operator<<(ostream& os, vector<T>& v) {
    for (auto& e : v) os << e << " ";
    return os;
}
template <typename T, typename U>
std::ostream& operator<<(std::ostream& os, const std::pair<T, U>& p) noexcept {
    return os << "(" << p.first << ", " << p.second << ")";
}
#ifdef ONLINE_JUDGE
#define debug(...)
#else
#define debug(...) cerr << "<" << #__VA_ARGS__ << ">: ", debug_out(__VA_ARGS__)
template <typename T>
void debug_out(T t) {
    cerr << t << endl;
}
template <typename T, typename... Args>
void debug_out(T t, Args... args) {
    cerr << t << ", ";
    debug_out(args...);
}
#endif

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    int n, m, x;
    cin >> n >> m >> x;
    vector<int> c(n);
    rep(i, n) cin >> c[i];
    rep(i, n) c.at(i)--;
    vector<vector<int>> spv = vector<vector<int>>(5, vector<int>(n));
    rep(i, n) spv.at(c.at(i)).at(i)++;

    vector<vector<int>> flt = vector<vector<int>>(5, vector<int>(n));
    rep(i, m) {
        int a, b, x;
        cin >> a >> b >> x;
        a--;
        b--;
        flt.at(b).at(a) += x;
    }
    rep(i, 5) reverse(all(flt.at(i)));
    vector<int> ans(n);
    vector<vector<int>> sum = vector<vector<int>>(5, vector<int>(n));
    rep(i, 5) {
        auto v = convolution(spv.at(i), flt.at(i));
        rep(j, n) sum.at(i).at(j) = v.at(j);
        rep(j, n) ans.at(j) += v.at(j + n - 1);
    }
    rep(i, n) ans.at(i) += x * i;
    cout << *max_element(all(ans)) << endl;
    return 0;
}
0