結果

問題 No.2710 How many more?
ユーザー playerplayer
提出日時 2024-04-04 16:21:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 676 ms / 2,000 ms
コード長 914 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 108,420 KB
最終ジャッジ日時 2024-10-01 00:26:50
合計ジャッジ時間 9,632 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,152 KB
testcase_01 AC 41 ms
54,376 KB
testcase_02 AC 504 ms
106,040 KB
testcase_03 AC 404 ms
106,512 KB
testcase_04 AC 435 ms
105,584 KB
testcase_05 AC 287 ms
99,060 KB
testcase_06 AC 387 ms
106,876 KB
testcase_07 AC 204 ms
78,096 KB
testcase_08 AC 210 ms
84,156 KB
testcase_09 AC 456 ms
106,748 KB
testcase_10 AC 279 ms
94,616 KB
testcase_11 AC 365 ms
89,756 KB
testcase_12 AC 622 ms
101,380 KB
testcase_13 AC 672 ms
108,148 KB
testcase_14 AC 676 ms
108,420 KB
testcase_15 AC 660 ms
108,020 KB
testcase_16 AC 669 ms
108,172 KB
testcase_17 AC 645 ms
108,160 KB
testcase_18 AC 40 ms
55,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

n, q = map(int, input().split())
a = list(map(int, input().split()))

b = [None] * n
d = defaultdict(int)
pl = defaultdict(int)

for i in range(n):
    b[i] = (a[i], i)
    d[i] = a[i]
    pl[a[i]] += 1
b.sort()

# ゼッケンiが全体で前から何番目か
ans = [None] * n
flg = False
# print(pl)
for i in range(n):
    di, p = b[i]
    # print(di, p)
    if i == 0:
        ans[p] = 0
        former = p
    else:
        if d[former] == di:
            ans[p] = ans[former]
            flg = True
        else:
            if not flg:
                ans[p] = ans[former] + 1
            else:
                ans[p] = ans[former] + pl[d[former]]
                flg = False
        former = p

# print(ans)

for _ in range(q):
    x, y = map(int, input().split())
    x, y = x - 1, y - 1
    if d[x] <= d[y]:
        print(0)
    else:
        print(ans[x] - ans[y] - pl[d[y]])
0