結果

問題 No.2330 Eat Slime
ユーザー Seed57_cashSeed57_cash
提出日時 2023-05-02 16:24:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,280 ms / 4,000 ms
コード長 955 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 116,388 KB
最終ジャッジ日時 2024-11-21 06:21:25
合計ジャッジ時間 57,665 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 531 ms
43,476 KB
testcase_01 AC 527 ms
43,760 KB
testcase_02 AC 529 ms
44,120 KB
testcase_03 AC 528 ms
43,880 KB
testcase_04 AC 533 ms
43,888 KB
testcase_05 AC 538 ms
43,880 KB
testcase_06 AC 542 ms
43,632 KB
testcase_07 AC 1,776 ms
105,736 KB
testcase_08 AC 905 ms
70,176 KB
testcase_09 AC 1,919 ms
108,152 KB
testcase_10 AC 1,003 ms
52,680 KB
testcase_11 AC 1,231 ms
52,672 KB
testcase_12 AC 1,841 ms
107,140 KB
testcase_13 AC 1,507 ms
100,696 KB
testcase_14 AC 1,720 ms
64,996 KB
testcase_15 AC 1,607 ms
82,632 KB
testcase_16 AC 1,556 ms
100,920 KB
testcase_17 AC 2,248 ms
115,816 KB
testcase_18 AC 2,260 ms
115,780 KB
testcase_19 AC 2,254 ms
115,396 KB
testcase_20 AC 2,257 ms
115,656 KB
testcase_21 AC 2,260 ms
115,328 KB
testcase_22 AC 2,239 ms
115,396 KB
testcase_23 AC 2,268 ms
115,788 KB
testcase_24 AC 2,280 ms
115,780 KB
testcase_25 AC 2,273 ms
116,008 KB
testcase_26 AC 2,270 ms
115,264 KB
testcase_27 AC 2,261 ms
115,272 KB
testcase_28 AC 2,239 ms
116,388 KB
testcase_29 AC 2,265 ms
115,660 KB
testcase_30 AC 2,258 ms
115,400 KB
testcase_31 AC 2,261 ms
115,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


# https://maspypy.com/%E6%95%B0%E5%AD%A6%E3%83%BBnumpy-%E9%AB%98%E9%80%9F%E3%83%95%E3%83%BC%E3%83%AA%E3%82%A8%E5%A4%89%E6%8F%9Bfft%E3%81%AB%E3%82%88%E3%82%8B%E7%95%B3%E3%81%BF%E8%BE%BC%E3%81%BF


n, m, x = map(int, input().split())
c_list = list(map(int, input().split()))
aby_list = [tuple(map(int, input().split())) for _ in range(m)]

colors = np.zeros((n, 5), dtype=np.int32)
for i, c in enumerate(c_list):
	colors[i, c - 1] = 1
score = np.zeros((n, 5), dtype=np.int32)
for a, b, y in aby_list:
	score[a - 1, b - 1] += y


fft_len = 1
while 2 * fft_len < 2 * n - 1:
	fft_len *= 2
fft_len *= 2

h = np.zeros((fft_len, 5), dtype=np.int32)
for c in range(5):
	Fsc = np.fft.rfft(score[:, c], fft_len)
	Fco = np.fft.rfft(colors[::-1, c], fft_len)
	h[:, c] = np.rint(np.fft.irfft(Fsc * Fco, fft_len)).astype(np.int32)

hs = h.sum(axis=1)
res = n * x

for j in range(n - 1, -1, -1):
	res = max(res, hs[j] + (n - 1 - j) * x)

print(res)

0