結果

問題 No.2330 Eat Slime
ユーザー googol_S0googol_S0
提出日時 2023-05-28 14:36:06
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 918 ms / 4,000 ms
コード長 667 bytes
コンパイル時間 4,812 ms
コンパイル使用メモリ 311,668 KB
実行使用メモリ 47,676 KB
最終ジャッジ日時 2024-06-08 05:49:03
合計ジャッジ時間 25,800 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 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 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 835 ms
38,940 KB
testcase_08 AC 407 ms
31,908 KB
testcase_09 AC 890 ms
33,468 KB
testcase_10 AC 129 ms
8,840 KB
testcase_11 AC 106 ms
5,376 KB
testcase_12 AC 839 ms
36,076 KB
testcase_13 AC 805 ms
38,828 KB
testcase_14 AC 189 ms
8,020 KB
testcase_15 AC 485 ms
31,180 KB
testcase_16 AC 799 ms
33,968 KB
testcase_17 AC 913 ms
47,676 KB
testcase_18 AC 906 ms
47,624 KB
testcase_19 AC 893 ms
47,500 KB
testcase_20 AC 909 ms
47,624 KB
testcase_21 AC 909 ms
47,624 KB
testcase_22 AC 898 ms
47,500 KB
testcase_23 AC 908 ms
47,496 KB
testcase_24 AC 909 ms
47,500 KB
testcase_25 AC 908 ms
47,620 KB
testcase_26 AC 914 ms
47,604 KB
testcase_27 AC 916 ms
47,620 KB
testcase_28 AC 918 ms
47,496 KB
testcase_29 AC 902 ms
47,624 KB
testcase_30 AC 896 ms
47,624 KB
testcase_31 AC 904 ms
47,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include<atcoder/all>
using namespace atcoder;
typedef long long ll;

int main(){
  int N,M;
  ll x;
  cin>>N>>M>>x;
  vector<int> C(N);
  vector<vector<ll>> X(5,vector<ll>(N+1,0));
  for(int i=0;i<N;i++){
    cin>>C[i];
    C[i]--;
    X[C[i]][i+1]=1;
  }
  vector<vector<ll>> Y(5,vector<ll>(N+1,0));
  for(int i=0;i<M;i++){
    int a,b;
    ll y;
    cin>>a>>b>>y;
    b--;
    Y[b][N-a]+=y;
  }
  vector<vector<ll>> Z(5);
  for(int i=0;i<5;i++){
    Z[i]=convolution_ll(X[i],Y[i]);
  }
  ll ANS=0;
  for(int i=0;i<=N;i++){
    ANS=max(ANS,i*x+Z[0][N+i]+Z[1][N+i]+Z[2][N+i]+Z[3][N+i]+Z[4][N+i]);
  }
  cout<<ANS<<endl;
}
0