結果

問題 No.1079 まお
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-06-12 22:53:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 889 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 154,808 KB
最終ジャッジ日時 2024-06-24 05:39:25
合計ジャッジ時間 5,826 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,168 KB
testcase_01 AC 42 ms
54,656 KB
testcase_02 AC 43 ms
54,616 KB
testcase_03 AC 42 ms
55,232 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 139 ms
101,996 KB
testcase_13 AC 160 ms
113,120 KB
testcase_14 AC 171 ms
121,688 KB
testcase_15 AC 191 ms
131,240 KB
testcase_16 AC 211 ms
139,360 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 233 ms
154,808 KB
testcase_23 AC 233 ms
154,708 KB
testcase_24 AC 233 ms
154,620 KB
testcase_25 AC 230 ms
154,636 KB
testcase_26 AC 221 ms
154,796 KB
testcase_27 AC 91 ms
89,588 KB
testcase_28 AC 156 ms
121,008 KB
testcase_29 AC 136 ms
116,968 KB
testcase_30 AC 138 ms
117,092 KB
testcase_31 AC 105 ms
89,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys;input=sys.stdin.readline
from collections import defaultdict
n, k = map(int, input().split())
X = list(map(int, input().split()))
st_f = [(0, 10**18), (X[0], X[0])]
st_b = [(0, 10**18)]
r = 0
j = 1
C = defaultdict(int)
D = defaultdict(int)
C[X[0]] += 1
D[X[0]] += 1
for i in range(n):
    while j<n:
#        if j == n:
#            j += 1
#            break
        if min(st_f[-1][1], st_b[-1][1]) == X[j]:
            break
        C[X[j]] += j+1
        D[X[j]] += 1
        st_f.append(
                (X[j], min(st_f[-1][1], X[j]))
                )
        j += 1
    if len(st_b) == 1:
        while len(st_f) > 1:
            x, y = st_f.pop()
            st_b.append(
                    (x, min(st_b[-1][1], x))
                    )
    st_b.pop()
    r += C[k-X[i]] - D[k-X[i]]*i
#    print(i, j, C[k-X[i]], D[k-X[i]])
    C[X[i]] -= i+1
    D[X[i]] -= 1
print(r)
0