結果

問題 No.2650 [Cherry 6th Tune *] セイジャク
ユーザー ああいいああいい
提出日時 2024-02-23 21:53:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,793 ms / 2,500 ms
コード長 827 bytes
コンパイル時間 450 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 139,168 KB
最終ジャッジ日時 2024-05-06 05:32:21
合計ジャッジ時間 44,431 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 434 ms
89,056 KB
testcase_03 AC 299 ms
85,248 KB
testcase_04 AC 1,112 ms
124,212 KB
testcase_05 AC 865 ms
111,556 KB
testcase_06 AC 462 ms
93,708 KB
testcase_07 AC 915 ms
117,244 KB
testcase_08 AC 369 ms
88,428 KB
testcase_09 AC 1,654 ms
138,112 KB
testcase_10 AC 1,793 ms
138,892 KB
testcase_11 AC 1,566 ms
137,496 KB
testcase_12 AC 1,626 ms
138,932 KB
testcase_13 AC 1,690 ms
139,168 KB
testcase_14 AC 1,619 ms
138,648 KB
testcase_15 AC 1,625 ms
138,944 KB
testcase_16 AC 1,544 ms
130,988 KB
testcase_17 AC 1,498 ms
131,868 KB
testcase_18 AC 1,570 ms
132,148 KB
testcase_19 AC 1,595 ms
131,888 KB
testcase_20 AC 1,564 ms
133,012 KB
testcase_21 AC 1,570 ms
132,784 KB
testcase_22 AC 1,492 ms
133,288 KB
testcase_23 AC 1,324 ms
132,628 KB
testcase_24 AC 1,361 ms
132,892 KB
testcase_25 AC 1,352 ms
132,416 KB
testcase_26 AC 1,320 ms
133,412 KB
testcase_27 AC 1,335 ms
133,780 KB
testcase_28 AC 1,327 ms
134,040 KB
testcase_29 AC 1,361 ms
133,032 KB
testcase_30 AC 1,410 ms
132,352 KB
testcase_31 AC 1,497 ms
138,256 KB
testcase_32 AC 610 ms
96,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,A = map(int,input().split())

X = list(map(int,input().split()))
T = int(input())

import heapq
#X = [(X[i],i) for i in range(N)]
q = []
for _ in range(T):
    l,r = map(int,input().split())
    q.append((l,r))

h1 = []
h2 = []
for i in  range(T):
    l,r = q[i]
    h1.append((l,-i,1))
    h1.append((r,i + N + 100,2))
for i in range(N):
    x = X[i]
    h1.append((x,i,3))
heapq.heapify(h1)
ans = [-1] * N
s = set()
while h1:
    now,j,f = heapq.heappop(h1)
    if f == 1:
        j = -j
        heapq.heappush(h2,-j)
    elif f == 2:
        j = j - N - 100
        s.add(j)
    else:
        while h2:
            u = -heapq.heappop(h2)
            if u in s:
                continue
            else:
                ans[j] = u + 1
                heapq.heappush(h2,-u)
                break
for a in ans:
    print(a)
0