結果

問題 No.2330 Eat Slime
ユーザー shobonvipshobonvip
提出日時 2023-05-28 15:04:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 939 ms / 4,000 ms
コード長 837 bytes
コンパイル時間 3,982 ms
コンパイル使用メモリ 265,096 KB
実行使用メモリ 37,996 KB
最終ジャッジ日時 2024-06-08 06:55:42
合計ジャッジ時間 25,065 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 848 ms
31,672 KB
testcase_08 AC 414 ms
25,136 KB
testcase_09 AC 847 ms
25,604 KB
testcase_10 AC 132 ms
7,700 KB
testcase_11 AC 103 ms
6,944 KB
testcase_12 AC 852 ms
29,564 KB
testcase_13 AC 838 ms
31,476 KB
testcase_14 AC 198 ms
6,944 KB
testcase_15 AC 507 ms
24,764 KB
testcase_16 AC 828 ms
26,328 KB
testcase_17 AC 931 ms
37,752 KB
testcase_18 AC 923 ms
37,876 KB
testcase_19 AC 920 ms
37,908 KB
testcase_20 AC 937 ms
37,920 KB
testcase_21 AC 927 ms
37,872 KB
testcase_22 AC 911 ms
37,900 KB
testcase_23 AC 907 ms
37,904 KB
testcase_24 AC 911 ms
37,940 KB
testcase_25 AC 926 ms
37,780 KB
testcase_26 AC 923 ms
37,852 KB
testcase_27 AC 928 ms
37,996 KB
testcase_28 AC 939 ms
37,904 KB
testcase_29 AC 921 ms
37,788 KB
testcase_30 AC 936 ms
37,780 KB
testcase_31 AC 929 ms
37,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

typedef modint998244353 mint;
typedef long long ll;

int main(){
	int n, m, x; cin >> n >> m >> x;
	vector<int> c(n);
	vector<vector<ll>> lst(5, vector<ll>(n));
	for (int i=0; i<n; i++){
		cin >> c[i];
		c[i]--;
		lst[c[i]][i] += 1;
	}

	vector<vector<ll>> bonus(5, vector<ll>(n));
	for (int i=0; i<m; i++){
		int a, b, y; cin >> a >> b >> y;
		a--; b--;
		bonus[b][a] += y;
	}
	for (int i=0; i<5; i++){
		reverse(lst[i].begin(), lst[i].end());
	}
	ll ans = n * x;
	vector<ll> qr(n);
	for (int i=0; i<n; i++){
		qr[i] = i * x;
	}
	for (int j=0; j<5; j++){
		vector<ll> ar = convolution_ll(lst[j], bonus[j]);
		for (int i=0; i<n; i++){
			qr[i] += ar[n-1-i];
		}
	}
	for (int i=0; i<n; i++){
		ans = max(ans, qr[i]);
	}
	cout << ans << endl;
}

0