結果

問題 No.2650 [Cherry 6th Tune *] セイジャク
ユーザー 👑 p-adicp-adic
提出日時 2023-07-26 11:38:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 667 ms / 2,500 ms
コード長 471 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 178,036 KB
最終ジャッジ日時 2024-09-29 05:17:07
合計ジャッジ時間 17,299 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,608 KB
testcase_01 AC 37 ms
52,608 KB
testcase_02 AC 178 ms
105,592 KB
testcase_03 AC 187 ms
90,368 KB
testcase_04 AC 595 ms
167,332 KB
testcase_05 AC 437 ms
142,892 KB
testcase_06 AC 265 ms
109,024 KB
testcase_07 AC 473 ms
149,836 KB
testcase_08 AC 198 ms
101,236 KB
testcase_09 AC 665 ms
165,808 KB
testcase_10 AC 641 ms
159,632 KB
testcase_11 AC 661 ms
161,256 KB
testcase_12 AC 638 ms
161,032 KB
testcase_13 AC 652 ms
161,520 KB
testcase_14 AC 667 ms
161,684 KB
testcase_15 AC 655 ms
164,468 KB
testcase_16 AC 466 ms
160,832 KB
testcase_17 AC 462 ms
178,036 KB
testcase_18 AC 456 ms
161,532 KB
testcase_19 AC 464 ms
161,836 KB
testcase_20 AC 459 ms
161,176 KB
testcase_21 AC 459 ms
161,120 KB
testcase_22 AC 476 ms
161,772 KB
testcase_23 AC 460 ms
162,948 KB
testcase_24 AC 453 ms
164,956 KB
testcase_25 AC 452 ms
165,076 KB
testcase_26 AC 443 ms
163,140 KB
testcase_27 AC 448 ms
162,788 KB
testcase_28 AC 451 ms
165,024 KB
testcase_29 AC 451 ms
165,000 KB
testcase_30 AC 460 ms
163,156 KB
testcase_31 AC 656 ms
159,100 KB
testcase_32 AC 213 ms
114,948 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]=t+1
	for i in R(m,n):B[i]=t+1
	for i in R(max(a,n*M),r):A[i]=t+1
for x in X:print(max(A[x],B[x//M]))
0