結果

問題 No.2581 [Cherry Anniversary 3] 28輪の桜のブーケ
ユーザー 👑 p-adicp-adic
提出日時 2023-12-05 01:40:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 990 ms / 3,000 ms
コード長 800 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 79,360 KB
最終ジャッジ日時 2024-09-27 03:16:33
合計ジャッジ時間 15,399 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
61,440 KB
testcase_01 AC 110 ms
77,184 KB
testcase_02 AC 136 ms
78,080 KB
testcase_03 AC 427 ms
79,360 KB
testcase_04 AC 291 ms
78,592 KB
testcase_05 AC 142 ms
78,592 KB
testcase_06 AC 355 ms
78,208 KB
testcase_07 AC 371 ms
78,336 KB
testcase_08 AC 139 ms
77,696 KB
testcase_09 AC 264 ms
78,464 KB
testcase_10 AC 431 ms
78,464 KB
testcase_11 AC 175 ms
78,720 KB
testcase_12 AC 483 ms
79,020 KB
testcase_13 AC 470 ms
78,208 KB
testcase_14 AC 507 ms
77,824 KB
testcase_15 AC 416 ms
78,720 KB
testcase_16 AC 437 ms
78,592 KB
testcase_17 AC 422 ms
78,720 KB
testcase_18 AC 566 ms
78,720 KB
testcase_19 AC 510 ms
79,104 KB
testcase_20 AC 534 ms
78,976 KB
testcase_21 AC 477 ms
78,336 KB
testcase_22 AC 975 ms
77,952 KB
testcase_23 AC 990 ms
78,080 KB
testcase_24 AC 963 ms
77,952 KB
testcase_25 AC 962 ms
78,080 KB
testcase_26 AC 962 ms
78,080 KB
testcase_27 AC 70 ms
70,528 KB
testcase_28 AC 96 ms
77,824 KB
testcase_29 AC 881 ms
78,592 KB
testcase_30 AC 83 ms
70,144 KB
testcase_31 AC 434 ms
78,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I,F=input,range
J=lambda:map(int,I().split())
M=int(I())
G=[list(J())for i in F(2)]
C=[0]*15
L=[{}for i in F(15)]
R=[{}for i in F(15)]
for i in F(1<<14):
	l=r=m=0
	for d in F(14):
		b=(i>>d)&1
		m,l,r=m+1-b,l+G[b][d],r+G[b][14+d]
	if l%M in L[m]:L[m][l%M]+=1
	else:L[m][l%M]=1
	if r%M in R[m]:R[m][r%M]+=1
	else:R[m][r%M]=1
T=[]
S=[{}for i in F(15)]
for e in F(15):
	l=0
	for i in sorted(R[e]):S[e][i],l=l,l+R[e][i]
	S[e][M]=l
	T+=[sorted(S[e])]
Q=int(I())
for q in F(Q):
	K,X=J()
	a=0
	for c in F(max(0,K-14),min(15,K+1)):
		e=K-c
		for i in L[c]:
			b,l,r=i>X,-1,len(T[e])-1
			while l+1<r:
				m=(l+r)//2
				if T[e][m]<M-i:l=m
				else:r=m
			l,s=-1,len(T[e])-1
			while l+1<s:
				m=(l+s)//2
				if T[e][m]<M*b+X-i:l=m
				else:s=m
			a+=L[c][i]*(S[e][T[e][r]]-S[e][T[e][s]]+S[e][M]*b)
	print(a)
0