結果

問題 No.2330 Eat Slime
ユーザー tyawanmusityawanmusi
提出日時 2023-05-24 11:16:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,930 ms / 4,000 ms
コード長 878 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 109,928 KB
最終ジャッジ日時 2024-06-06 04:01:37
合計ジャッジ時間 49,229 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 481 ms
43,764 KB
testcase_01 AC 482 ms
43,892 KB
testcase_02 AC 494 ms
43,900 KB
testcase_03 AC 480 ms
43,772 KB
testcase_04 AC 475 ms
43,772 KB
testcase_05 AC 470 ms
43,996 KB
testcase_06 AC 488 ms
43,772 KB
testcase_07 AC 1,569 ms
106,024 KB
testcase_08 AC 979 ms
78,836 KB
testcase_09 AC 1,612 ms
103,500 KB
testcase_10 AC 800 ms
48,228 KB
testcase_11 AC 879 ms
43,636 KB
testcase_12 AC 1,593 ms
104,272 KB
testcase_13 AC 1,454 ms
106,092 KB
testcase_14 AC 1,164 ms
47,260 KB
testcase_15 AC 1,493 ms
78,200 KB
testcase_16 AC 1,460 ms
104,104 KB
testcase_17 AC 1,930 ms
109,792 KB
testcase_18 AC 1,917 ms
109,792 KB
testcase_19 AC 1,881 ms
109,504 KB
testcase_20 AC 1,869 ms
109,384 KB
testcase_21 AC 1,907 ms
109,556 KB
testcase_22 AC 1,912 ms
109,928 KB
testcase_23 AC 1,873 ms
109,420 KB
testcase_24 AC 1,891 ms
109,456 KB
testcase_25 AC 1,892 ms
109,484 KB
testcase_26 AC 1,899 ms
109,800 KB
testcase_27 AC 1,880 ms
109,652 KB
testcase_28 AC 1,880 ms
109,412 KB
testcase_29 AC 1,921 ms
109,860 KB
testcase_30 AC 1,865 ms
109,468 KB
testcase_31 AC 1,863 ms
109,404 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())
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):
  color[c[i] - 1][i] += 1
for _ in range(m):
  a, b, y = map(int, input().split())
  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