結果

問題 No.2650 [Cherry 6th Tune *] セイジャク
ユーザー 👑 p-adicp-adic
提出日時 2023-07-25 18:54:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 740 ms / 2,500 ms
コード長 501 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 177,728 KB
最終ジャッジ日時 2024-09-29 05:16:40
合計ジャッジ時間 17,736 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,740 KB
testcase_01 AC 40 ms
53,436 KB
testcase_02 AC 182 ms
105,736 KB
testcase_03 AC 182 ms
90,324 KB
testcase_04 AC 613 ms
167,376 KB
testcase_05 AC 449 ms
143,080 KB
testcase_06 AC 273 ms
109,056 KB
testcase_07 AC 521 ms
150,016 KB
testcase_08 AC 209 ms
101,580 KB
testcase_09 AC 698 ms
165,824 KB
testcase_10 AC 740 ms
159,028 KB
testcase_11 AC 710 ms
160,928 KB
testcase_12 AC 734 ms
161,184 KB
testcase_13 AC 733 ms
159,980 KB
testcase_14 AC 689 ms
159,868 KB
testcase_15 AC 712 ms
163,976 KB
testcase_16 AC 480 ms
161,052 KB
testcase_17 AC 479 ms
177,728 KB
testcase_18 AC 475 ms
161,944 KB
testcase_19 AC 493 ms
161,288 KB
testcase_20 AC 473 ms
161,152 KB
testcase_21 AC 479 ms
159,500 KB
testcase_22 AC 472 ms
161,824 KB
testcase_23 AC 448 ms
165,272 KB
testcase_24 AC 445 ms
162,876 KB
testcase_25 AC 444 ms
165,084 KB
testcase_26 AC 445 ms
163,392 KB
testcase_27 AC 443 ms
162,964 KB
testcase_28 AC 442 ms
165,316 KB
testcase_29 AC 441 ms
165,408 KB
testcase_30 AC 464 ms
163,356 KB
testcase_31 AC 721 ms
158,756 KB
testcase_32 AC 215 ms
114,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I,R=input,range
def J():
	return map(int,I().split())
N,A=J()
X=list(J())
T=R(int(I()))
W=[list(J())for t in T]
Y=set(X)
for w in W:Y.add(w[0]),Y.add(w[1])
s=0
Z={}
for y in sorted(Y):Z[y],s=s,s+1
X=[Z[x]for x in X]
W=[[Z[x]for x in w]for w in W]
M=548
A=[-1]*s
B=[-1]*M
for t in T:
	l,r=W[t][0],W[t][1]+1
	m=(l+M-1)//M
	n=max(m,r//M)
	a=min(m*M,r)
	for i in R(l,a):A[i]=max(A[i],t+1)
	for i in R(m,n):B[i]=max(B[i],t+1)
	for i in R(max(a,n*M),r):A[i]=max(A[i],t+1)
for x in X:print(max(A[x],B[x//M]))
0