結果

問題 No.2330 Eat Slime
ユーザー HaaHaa
提出日時 2023-05-28 15:38:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 948 ms / 4,000 ms
コード長 950 bytes
コンパイル時間 3,777 ms
コンパイル使用メモリ 230,012 KB
実行使用メモリ 99,484 KB
最終ジャッジ日時 2024-06-08 08:12:16
合計ジャッジ時間 25,588 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 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 858 ms
83,204 KB
testcase_08 AC 746 ms
71,664 KB
testcase_09 AC 848 ms
72,852 KB
testcase_10 AC 137 ms
15,508 KB
testcase_11 AC 110 ms
7,932 KB
testcase_12 AC 846 ms
77,520 KB
testcase_13 AC 819 ms
82,892 KB
testcase_14 AC 205 ms
13,408 KB
testcase_15 AC 826 ms
70,628 KB
testcase_16 AC 805 ms
73,988 KB
testcase_17 AC 939 ms
99,480 KB
testcase_18 AC 940 ms
99,356 KB
testcase_19 AC 946 ms
99,480 KB
testcase_20 AC 934 ms
99,440 KB
testcase_21 AC 939 ms
99,352 KB
testcase_22 AC 936 ms
99,352 KB
testcase_23 AC 938 ms
99,356 KB
testcase_24 AC 943 ms
99,352 KB
testcase_25 AC 943 ms
99,484 KB
testcase_26 AC 939 ms
99,480 KB
testcase_27 AC 946 ms
99,476 KB
testcase_28 AC 942 ms
99,352 KB
testcase_29 AC 941 ms
99,312 KB
testcase_30 AC 942 ms
99,480 KB
testcase_31 AC 948 ms
99,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
typedef long long int ll;
typedef pair<ll,ll> P;
typedef vector<ll> VI;
typedef vector<VI> VVI;
#define REP(i,n) for(int i=0;i<(n);i++)
#define ALL(v) v.begin(),v.end()
template<typename T> bool chmax(T& x, const T& y){return (x<y)?(x=y,true):false;};
template<typename T> bool chmin(T& x, const T& y){return (x>y)?(x=y,true):false;};
constexpr ll MOD=998244353;
constexpr ll INF=2e18;

int main(){
    int n, m, x; cin >> n >> m >> x;
    VI c(n); REP(i,n) cin >> c[i], c[i]--;
    VI l(n*5,0), r(n*5,0);
    REP(i,n) l[i*5+c[i]]=1;
    int a, b, y;
    REP(i,m){
        cin >> a >> b >> y;
        a--, b--;
        r[a*5+b]+=y;
    }
    reverse(ALL(r));
    auto res=convolution_ll(l,r);
    int s=res.size();
    ll ans=n*x, z=0;
    for(int i=n*5-1;i<s;i+=5){
        chmax(ans,res[i]+z);
        z+=x;
    }
    cout << ans << endl;
    return 0;
}
0