結果

問題 No.2710 How many more?
ユーザー 👑 KA37RIKA37RI
提出日時 2024-03-31 14:58:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 339 ms / 2,000 ms
コード長 567 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 98,884 KB
最終ジャッジ日時 2024-09-30 20:08:22
合計ジャッジ時間 5,582 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,408 KB
testcase_01 AC 40 ms
52,204 KB
testcase_02 AC 261 ms
91,760 KB
testcase_03 AC 213 ms
86,960 KB
testcase_04 AC 234 ms
90,464 KB
testcase_05 AC 167 ms
83,736 KB
testcase_06 AC 213 ms
88,056 KB
testcase_07 AC 143 ms
80,980 KB
testcase_08 AC 147 ms
80,864 KB
testcase_09 AC 264 ms
92,664 KB
testcase_10 AC 184 ms
85,148 KB
testcase_11 AC 211 ms
86,724 KB
testcase_12 AC 312 ms
97,764 KB
testcase_13 AC 334 ms
98,864 KB
testcase_14 AC 328 ms
98,756 KB
testcase_15 AC 328 ms
98,884 KB
testcase_16 AC 328 ms
98,872 KB
testcase_17 AC 339 ms
98,864 KB
testcase_18 AC 39 ms
52,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(n, q, a, xy):
  b = sorted(range(n), key=lambda x: a[x])
  c = [0] * n
  d = [0] * n
  for i, x in enumerate(b):
    if i > 0 and a[b[i-1]] == a[x]:
      c[x] = c[b[i-1]]
    else:
      c[x] = i
  for i, x in reversed(list(enumerate(b))):
    if i < n - 1 and a[b[i+1]] == a[x]:
      d[x] = d[b[i+1]]
    else:
      d[x] = i
  # print(c)
  for x, y in xy:
    print(max(c[x] - d[y] - 1, 0))

n, q = [int(x) for x in input().split()]
a = [int(x) for x in input().split()]
xy = [[int(x) - 1 for x in input().split()] for _ in range(q)]

solve(n, q, a, xy)
0