結果

問題 No.1079 まお
ユーザー maspymaspy
提出日時 2020-05-15 06:43:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 856 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 47,756 KB
最終ジャッジ日時 2024-10-01 22:42:57
合計ジャッジ時間 8,935 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 25 ms
10,496 KB
testcase_02 AC 25 ms
10,496 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 221 ms
29,068 KB
testcase_13 AC 257 ms
29,336 KB
testcase_14 AC 299 ms
29,796 KB
testcase_15 AC 341 ms
30,512 KB
testcase_16 AC 381 ms
31,896 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 448 ms
47,476 KB
testcase_23 AC 446 ms
47,756 KB
testcase_24 AC 459 ms
47,568 KB
testcase_25 AC 454 ms
47,540 KB
testcase_26 AC 461 ms
47,636 KB
testcase_27 AC 245 ms
20,168 KB
testcase_28 AC 344 ms
30,764 KB
testcase_29 AC 328 ms
31,896 KB
testcase_30 AC 311 ms
32,136 KB
testcase_31 AC 312 ms
19,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import defaultdict
from heapq import heappop, heappush

read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

N, K, *A = map(int, read().split())

def add(i):
    x = A[i]
    heappush(q, x)
    counter[x] += 1
    index_sum[x] += i


def remove(i):
    x = A[i]
    counter[x] -= 1
    index_sum[x] -= i
    # 最小元がqに存在することを保証
    while q and counter[q[0]] == 0:
        heappop(q)

q = []
counter = defaultdict(int)
index_sum = defaultdict(int)

# 左端 L を固定
# 極大な[L,R]を求める
answer = 0
L = R = -1
for L in range(N):
    while R < N - 1:
        x = A[R + 1]
        if q and q[0] == x:
            break
        R += 1
        add(R)
    answer += index_sum[K - A[L]] - (L - 1) * counter[K - A[L]]
    remove(L)

print(answer)
0