結果

問題 No.2330 Eat Slime
ユーザー keisuke6keisuke6
提出日時 2023-05-28 15:11:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 415 bytes
コンパイル時間 3,341 ms
コンパイル使用メモリ 216,420 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-08 07:11:23
合計ジャッジ時間 9,479 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
9,728 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 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx512f")
#pragma GCC optimize("O3")
#include <bits/stdc++.h>
using namespace std;

int main(){
	int N,M,X;
	cin>>N>>M>>X;
	vector<int> A(N+1),C(N);
	for(int i=0;i<N;i++) cin>>C[i];
	for(int i=0;i<=N;i++) A[i] = i*X;
	for(int i=0;i<M;i++){
		int a,b,c;
		cin>>a>>b>>c;
		a--;
		for(int j=0;j<N-a;j++)if(C[a+j] == b) A[j] += c;
	}
	int ans = 0;
	for(int x:A) ans = max(ans,x);
	cout<<ans<<endl;
}
0