結果
問題 | No.2330 Eat Slime |
ユーザー | m_99 |
提出日時 | 2023-05-28 14:27:43 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 757 bytes |
コンパイル時間 | 4,034 ms |
コンパイル使用メモリ | 262,708 KB |
実行使用メモリ | 11,136 KB |
最終ジャッジ日時 | 2024-06-08 05:30:57 |
合計ジャッジ時間 | 10,153 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
ソースコード
#include <stdio.h> #include <atcoder/all> #include <bits/stdc++.h> using namespace std; using namespace atcoder; using mint = modint998244353; #define rep(i,n) for (int i = 0; i < (n); ++i) #define Inf32 1000000001 #define Inf64 4000000000000000001 int main(){ int N,M,X; cin>>N>>M>>X; vector<vector<long long>> c(4,vector<long long>(N)); rep(j,N){ int t; cin>>t; c[t-1][j] = 1; } vector<vector<long long>> t(4,vector<long long>(N)); rep(i,M){ int x,y,z; cin>>x>>y>>z; x--,y--; t[y][N-1-x] += z; } vector<long long> ans(N); rep(i,4){ auto tt= convolution_ll(c[i],t[i]); rep(j,N){ ans[j] += tt[N-1+j]; } } rep(i,N)ans[i] += X * i; long long aa = 0; rep(i,N)aa = max(aa,ans[i]); cout<<aa<<endl; return 0; }