結果

問題 No.2974 関数の芽
ユーザー 👑 p-adicp-adic
提出日時 2023-11-15 09:36:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,979 ms / 2,000 ms
コード長 1,184 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 143,300 KB
最終ジャッジ日時 2024-09-22 19:29:36
合計ジャッジ時間 18,527 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,652 KB
testcase_01 AC 38 ms
54,160 KB
testcase_02 AC 39 ms
53,476 KB
testcase_03 AC 39 ms
54,204 KB
testcase_04 AC 37 ms
53,580 KB
testcase_05 AC 38 ms
53,340 KB
testcase_06 AC 38 ms
53,628 KB
testcase_07 AC 39 ms
54,956 KB
testcase_08 AC 40 ms
54,360 KB
testcase_09 AC 41 ms
54,664 KB
testcase_10 AC 38 ms
54,072 KB
testcase_11 AC 49 ms
63,120 KB
testcase_12 AC 130 ms
77,648 KB
testcase_13 AC 198 ms
80,216 KB
testcase_14 AC 377 ms
105,516 KB
testcase_15 AC 1,215 ms
143,300 KB
testcase_16 AC 948 ms
142,716 KB
testcase_17 AC 1,873 ms
143,252 KB
testcase_18 AC 1,838 ms
143,252 KB
testcase_19 AC 1,954 ms
143,136 KB
testcase_20 AC 1,973 ms
143,272 KB
testcase_21 AC 1,912 ms
143,124 KB
testcase_22 AC 1,979 ms
143,128 KB
testcase_23 AC 1,904 ms
143,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I,R=input,range
Q=R(int(I()))
c=[]
d=[]
x=[]
for q in Q:
	K,L,M,N,X=map(int,I().split())
	c+=[[K,M]]
	d+=[[L,N]]
	x+=[X]
y=sorted(list(set(X for X in x))+[-10**9,10**9])
s=len(y)
t=int(s**0.5)+1
z={y[i]:i for i in R(s)}
F=[[[[[0]*s,[0]*t]for i in R(2)]for j in R(2)]for l in R(2)]
def U(A,l,r,x):
	m=(l+t-1)//t
	n=max(m,r//t)
	u=min(m*t,r)
	for i in R(l,u):A[0][i]+=x
	for j in R(m,n):A[1][j]+=x
	for i in R(max(u,n*t),r):A[0][i]+=x
for q in Q:
	for j in R(2):
		K,L=c[q][j],d[q][j]
		if K>0:
			l,r=-1,s-1
			while l+1<r:
				m=(l+r)//2
				if L+K*y[m]<0:l=m
				else:r=m
			m=[r+1,r][L+K*y[r]>0]
			U(F[0][j][0],m,s,L),U(F[0][j][1],m,s,K),U(F[1][j][0],r,s,L),U(F[1][j][1],r,s,K)
		elif K<0:
			l,r=0,s
			while l<r-1:
				m=(l+r)//2
				if L+K*y[m]<0:r=m
				else:l=m
			m=[l,r][L+K*y[l]>0]
			U(F[1][j][0],0,m,L),U(F[1][j][1],0,m,K),U(F[0][j][0],0,r,L),U(F[0][j][1],0,r,K)
		elif L>0:U(F[0][j][0],0,s,L),U(F[1][j][0],0,s,L)
	i=z[x[q]]
	print("YNeos"[[F[0][0][0][0][i]+F[0][0][0][1][i//t],F[0][0][1][0][i]+F[0][0][1][1][i//t],F[1][0][1][0][i]+F[1][0][1][1][i//t]]!=[F[0][1][0][0][i]+F[0][1][0][1][i//t],F[0][1][1][0][i]+F[0][1][1][1][i//t],F[1][1][1][0][i]+F[1][1][1][1][i//t]]::2])
0