結果

問題 No.2423 Merge Stones
ユーザー Seed57_cashSeed57_cash
提出日時 2023-07-10 12:40:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,272 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 78,252 KB
最終ジャッジ日時 2024-09-12 23:39:52
合計ジャッジ時間 8,419 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,584 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 37 ms
53,468 KB
testcase_05 AC 37 ms
53,144 KB
testcase_06 AC 37 ms
53,620 KB
testcase_07 AC 37 ms
53,068 KB
testcase_08 AC 37 ms
52,884 KB
testcase_09 AC 37 ms
53,680 KB
testcase_10 AC 39 ms
53,184 KB
testcase_11 AC 177 ms
77,968 KB
testcase_12 AC 69 ms
76,244 KB
testcase_13 AC 81 ms
77,048 KB
testcase_14 AC 75 ms
76,756 KB
testcase_15 AC 69 ms
76,332 KB
testcase_16 AC 78 ms
76,512 KB
testcase_17 AC 77 ms
77,520 KB
testcase_18 AC 76 ms
76,692 KB
testcase_19 AC 70 ms
76,252 KB
testcase_20 AC 75 ms
76,824 KB
testcase_21 AC 82 ms
76,740 KB
testcase_22 AC 79 ms
77,316 KB
testcase_23 AC 73 ms
76,468 KB
testcase_24 AC 72 ms
76,500 KB
testcase_25 AC 73 ms
76,588 KB
testcase_26 AC 68 ms
76,200 KB
testcase_27 AC 76 ms
76,632 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 76 ms
77,104 KB
testcase_31 AC 75 ms
76,800 KB
testcase_32 AC 82 ms
77,052 KB
testcase_33 AC 74 ms
76,644 KB
testcase_34 WA -
testcase_35 AC 75 ms
76,752 KB
testcase_36 AC 73 ms
76,692 KB
testcase_37 AC 73 ms
76,784 KB
testcase_38 AC 72 ms
76,144 KB
testcase_39 WA -
testcase_40 AC 74 ms
76,624 KB
testcase_41 AC 77 ms
76,812 KB
testcase_42 AC 88 ms
77,464 KB
testcase_43 AC 71 ms
76,108 KB
testcase_44 AC 83 ms
76,852 KB
testcase_45 AC 73 ms
76,208 KB
testcase_46 AC 81 ms
76,732 KB
testcase_47 AC 73 ms
76,108 KB
testcase_48 AC 69 ms
76,264 KB
testcase_49 AC 69 ms
76,220 KB
testcase_50 AC 71 ms
76,452 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 125 ms
77,296 KB
testcase_54 WA -
testcase_55 AC 123 ms
77,360 KB
testcase_56 AC 82 ms
76,792 KB
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 AC 160 ms
77,736 KB
testcase_62 AC 168 ms
77,840 KB
testcase_63 AC 163 ms
77,884 KB
testcase_64 AC 178 ms
77,452 KB
testcase_65 AC 176 ms
77,652 KB
testcase_66 AC 172 ms
77,980 KB
testcase_67 AC 176 ms
77,584 KB
testcase_68 AC 185 ms
77,936 KB
testcase_69 AC 209 ms
78,208 KB
testcase_70 AC 169 ms
77,636 KB
testcase_71 AC 142 ms
77,528 KB
testcase_72 AC 141 ms
77,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 最後にとる石について考える
# その色がどこからきたのかを考えると、その石は動かなかった扱いができる
# 出発点を左右に動かす
# 新しい石に出会ったときに、貪欲に獲得する。自分は合成可能なこれまでの石のうち、一番最近のものになる


n, k = map(int, input().split())
a_list = list(map(int, input().split()))
c_list = list(map(int, input().split()))
sum_a = sum(a_list)

res_left = [0] * n
res_right = [0] * n

# iから出発(左端の想定)
for i in range(n):
	# 右向きに進める
	# 現時点の蓄積
	r = a_list[i]
	# 各時点でなれる色と一番最近出会った時点
	colors = [[n + 1] * 50 for _ in range(n)]
	colors[0][c_list[i] - 1] = 0
	for j in range(1, n):
		new_color = c_list[(i + j) % n] - 1
		# 全探索
		# 現時点でi+jと合成可能な色のうち、一番新しい時点で出会ったものを探す
		min_j = n + 1
		for c in range(max(new_color - k, 0), min(new_color + k + 1, 50)):
			min_j = min(colors[j - 1][c], min_j)
		
		# 無理な場合
		if min_j == n + 1:
			break
	
		# 見つかった場合
		# copy
		for c in range(50):
			colors[j][c] = colors[min_j][c]
		colors[j][new_color] = j
		
		res_left[(i + j) % n] = max(res_left[(i + j) % n], r)
		r += a_list[(i + j) % n]
		
	# 左向きに進める
	# 現時点の蓄積
	r = a_list[i]
	# 各時点でなれる色と一番最近出会った時点
	colors = [[n + 1] * 50 for _ in range(n)]
	colors[0][c_list[i] - 1] = 0
	for j in range(1, n):
		new_color = c_list[(i - j) % n] - 1
		# 全探索
		# 現時点でi-jと合成可能な色のうち、一番新しい時点で出会ったものを探す
		min_j = n + 1
		for c in range(max(new_color - k, 0), min(new_color + k + 1, 50)):
			min_j = min(colors[j - 1][c], min_j)
		
		# 無理な場合
		if min_j == n + 1:
			break
	
		# 見つかった場合
		# copy
		for c in range(50):
			colors[j][c] = colors[min_j][c]
		colors[j][new_color] = j
		
		res_right[(i - j) % n] = max(res_right[(i - j) % n], r)
		r += a_list[(i - j) % n]
	
# 1周していたら過剰になるので、全部の合計にする
res = [0] * n
for i in range(n):
	res[i] = min(res_left[i] + res_right[i] + a_list[i], sum_a)

print(max(res))
0