結果

問題 No.2974 関数の芽
ユーザー 👑 p-adicp-adic
提出日時 2023-11-15 09:40:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,184 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 13,056 KB
実行使用メモリ 66,384 KB
最終ジャッジ日時 2024-09-22 19:29:29
合計ジャッジ時間 8,250 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
16,768 KB
testcase_01 AC 31 ms
11,008 KB
testcase_02 AC 31 ms
11,136 KB
testcase_03 AC 31 ms
11,136 KB
testcase_04 AC 31 ms
11,008 KB
testcase_05 AC 31 ms
11,264 KB
testcase_06 AC 31 ms
11,008 KB
testcase_07 AC 31 ms
11,264 KB
testcase_08 AC 32 ms
11,136 KB
testcase_09 AC 32 ms
11,136 KB
testcase_10 AC 31 ms
11,008 KB
testcase_11 AC 34 ms
11,008 KB
testcase_12 AC 71 ms
11,136 KB
testcase_13 AC 745 ms
14,848 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

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