結果

問題 No.2330 Eat Slime
ユーザー tyawanmusityawanmusi
提出日時 2023-05-24 12:04:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,914 ms / 4,000 ms
コード長 1,042 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 110,412 KB
最終ジャッジ日時 2024-06-06 04:19:56
合計ジャッジ時間 46,416 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 439 ms
44,024 KB
testcase_01 AC 437 ms
44,024 KB
testcase_02 AC 439 ms
44,024 KB
testcase_03 AC 432 ms
44,276 KB
testcase_04 AC 465 ms
43,532 KB
testcase_05 AC 438 ms
43,528 KB
testcase_06 AC 435 ms
44,016 KB
testcase_07 AC 1,421 ms
106,116 KB
testcase_08 AC 882 ms
79,572 KB
testcase_09 AC 1,450 ms
103,996 KB
testcase_10 AC 717 ms
48,356 KB
testcase_11 AC 819 ms
44,020 KB
testcase_12 AC 1,427 ms
105,016 KB
testcase_13 AC 1,416 ms
106,072 KB
testcase_14 AC 1,078 ms
47,828 KB
testcase_15 AC 1,249 ms
79,444 KB
testcase_16 AC 1,269 ms
104,136 KB
testcase_17 AC 1,735 ms
109,844 KB
testcase_18 AC 1,744 ms
109,780 KB
testcase_19 AC 1,737 ms
109,600 KB
testcase_20 AC 1,758 ms
110,220 KB
testcase_21 AC 1,750 ms
110,248 KB
testcase_22 AC 1,756 ms
110,104 KB
testcase_23 AC 1,865 ms
109,780 KB
testcase_24 AC 1,914 ms
110,104 KB
testcase_25 AC 1,902 ms
110,108 KB
testcase_26 AC 1,899 ms
109,840 KB
testcase_27 AC 1,776 ms
110,412 KB
testcase_28 AC 1,752 ms
109,984 KB
testcase_29 AC 1,811 ms
109,704 KB
testcase_30 AC 1,798 ms
110,228 KB
testcase_31 AC 1,847 ms
109,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


def convolve(f, g):
  fft_len = 1
  while 2 * fft_len < len(f) + len(g) - 1:
    fft_len *= 2
  fft_len *= 2
  Ff = np.fft.rfft(np.array(f, np.int64), fft_len)
  Fg = np.fft.rfft(np.array(g, np.int64), fft_len)
  Fh = Ff * Fg
  h = np.fft.irfft(Fh, fft_len)
  h = np.rint(h).astype(np.int64)
  return h[:len(f) + len(g) - 1]


n, m, x = map(int, input().split())
assert 1 <= n <= 2 * 10**5
assert 1 <= m <= 2 * 10**5
assert 0 <= x <= 100
c = list(map(int, input().split()))
color = [[0] * n for _ in range(5)]
point = [[0] * n for _ in range(5)]
for i in range(n):
  assert 1 <= c[i] <= 5
  color[c[i] - 1][i] += 1
for _ in range(m):
  a, b, y = map(int, input().split())
  assert 1 <= a <= n
  assert 1 <= b <= 5
  assert 1 <= y <= 100
  point[b - 1][n - a] += y

score_f = [convolve(color[i], point[i])[n - 1:] for i in range(5)]
score = [
  score_f[0][i] + score_f[1][i] + score_f[2][i] + score_f[3][i] + score_f[4][i]
  for i in range(n)]

ans = x * n
for i in range(n):
  ans = max(ans, i * x + score[i])
print(ans)
0