結果

問題 No.2644 Iro Iro-Iro
ユーザー cho435cho435
提出日時 2024-02-13 04:49:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,614 ms / 2,000 ms
コード長 1,191 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 170,384 KB
最終ジャッジ日時 2024-09-28 18:33:34
合計ジャッジ時間 41,222 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 702 ms
159,916 KB
testcase_01 AC 666 ms
159,292 KB
testcase_02 AC 700 ms
159,188 KB
testcase_03 AC 764 ms
161,332 KB
testcase_04 AC 763 ms
163,836 KB
testcase_05 AC 789 ms
162,216 KB
testcase_06 AC 706 ms
161,348 KB
testcase_07 AC 774 ms
161,932 KB
testcase_08 AC 725 ms
162,832 KB
testcase_09 AC 669 ms
161,348 KB
testcase_10 AC 674 ms
160,392 KB
testcase_11 AC 703 ms
162,700 KB
testcase_12 AC 689 ms
160,284 KB
testcase_13 AC 1,413 ms
165,684 KB
testcase_14 AC 1,451 ms
164,716 KB
testcase_15 AC 1,469 ms
162,796 KB
testcase_16 AC 1,391 ms
164,052 KB
testcase_17 AC 1,450 ms
164,792 KB
testcase_18 AC 1,507 ms
169,624 KB
testcase_19 AC 1,477 ms
168,864 KB
testcase_20 AC 1,476 ms
170,384 KB
testcase_21 AC 1,485 ms
170,328 KB
testcase_22 AC 1,450 ms
169,448 KB
testcase_23 AC 1,485 ms
166,792 KB
testcase_24 AC 1,494 ms
166,376 KB
testcase_25 AC 1,553 ms
167,704 KB
testcase_26 AC 1,572 ms
167,852 KB
testcase_27 AC 1,507 ms
167,896 KB
testcase_28 AC 676 ms
160,596 KB
testcase_29 AC 1,614 ms
167,940 KB
testcase_30 AC 1,315 ms
167,512 KB
testcase_31 AC 1,268 ms
165,860 KB
testcase_32 AC 1,384 ms
166,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

# https://maspypy.com/数学・numpy-高速フーリエ変換fftによる畳み込み
def convolve(f, g):
	"""多項式 f, g の積を計算する。

	Parameters
	----------
	f : np.ndarray (int64)
		f[i] に、x^i の係数が入っている

	g : np.ndarray (int64)
		g[i] に、x^i の係数が入っている


	Returns
	-------
	h : np.ndarray
		f,g の積
	"""
	# h の長さ以上の n=2^k を計算
	fft_len = 1
	while 2 * fft_len < len(f) + len(g) - 1:
		fft_len *= 2
	fft_len *= 2

	# フーリエ変換
	Ff = np.fft.rfft(f, fft_len)
	Fg = np.fft.rfft(g, 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 = map(int,input().split())

Max_size = 101 ** 3
V = np.zeros(Max_size)
W = [0] * M

for i in range(N):
	a, b, c = map(int,input().split())
	V[a + 101*b + 101*101*c] = 1

for i in range(M):
	x, y, z = map(int,input().split())
	W[i] = x + 101*y + 101*101*z

rV = V[::-1]

res = convolve(V, rV)

ans = N
for i in range(M):
	ans = max(ans, N*2 - res[Max_size - 1 + W[i]])

print(ans)
0