結果

問題 No.1555 Constructed Balancing Sequence
ユーザー chineristACchineristAC
提出日時 2021-01-11 03:58:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 958 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,628 KB
実行使用メモリ 98,056 KB
最終ジャッジ日時 2024-06-22 19:29:25
合計ジャッジ時間 4,223 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,700 KB
testcase_01 AC 38 ms
52,216 KB
testcase_02 AC 38 ms
52,828 KB
testcase_03 AC 38 ms
53,812 KB
testcase_04 AC 38 ms
52,396 KB
testcase_05 AC 39 ms
54,012 KB
testcase_06 AC 38 ms
53,976 KB
testcase_07 AC 39 ms
53,692 KB
testcase_08 AC 38 ms
54,040 KB
testcase_09 AC 38 ms
52,268 KB
testcase_10 AC 37 ms
52,200 KB
testcase_11 AC 38 ms
52,456 KB
testcase_12 AC 77 ms
95,784 KB
testcase_13 AC 80 ms
96,420 KB
testcase_14 AC 79 ms
97,144 KB
testcase_15 AC 75 ms
96,012 KB
testcase_16 AC 78 ms
96,112 KB
testcase_17 AC 48 ms
63,064 KB
testcase_18 AC 78 ms
95,444 KB
testcase_19 AC 79 ms
96,168 KB
testcase_20 AC 78 ms
95,420 KB
testcase_21 AC 78 ms
95,956 KB
testcase_22 AC 79 ms
96,108 KB
testcase_23 AC 80 ms
98,056 KB
testcase_24 AC 80 ms
96,740 KB
testcase_25 AC 78 ms
97,604 KB
testcase_26 AC 80 ms
98,004 KB
testcase_27 AC 77 ms
97,376 KB
testcase_28 AC 69 ms
85,272 KB
testcase_29 AC 75 ms
92,132 KB
testcase_30 AC 74 ms
91,896 KB
testcase_31 AC 64 ms
81,740 KB
testcase_32 AC 75 ms
93,200 KB
testcase_33 AC 77 ms
95,016 KB
testcase_34 AC 63 ms
81,444 KB
testcase_35 AC 67 ms
83,492 KB
testcase_36 AC 69 ms
85,264 KB
testcase_37 AC 72 ms
88,660 KB
testcase_38 AC 37 ms
52,948 KB
testcase_39 AC 38 ms
53,804 KB
testcase_40 AC 37 ms
52,648 KB
testcase_41 AC 38 ms
52,948 KB
testcase_42 AC 39 ms
53,540 KB
testcase_43 AC 75 ms
95,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#maspyさんのコード(https://yukicoder.me/submissions/602281)をもとにつくったO(N)解

def check(N,K,A):
    import itertools
    MOD = 998_244_353
    def is_balanced(A, Acum):
        for a, b in zip(A[1:], Acum[1:]):
            if a > b:
                return False
        return True

    def main(N, K, A):
        S = [0] + list(itertools.accumulate(A))
        if not is_balanced(A, S):
            return 0
        MAX = K + 10
        # x 以下の数列は対策済
        dp = [0] * (MAX + MAX + 1)
        v = A[-1] - 1
        res = 1
        for n in range(N - 2, -1, -1):
            if v < S[n] + A[n] - 1:
                low = A[n]
            else:
                low = -K
            #print(A[n]+1-low)
            res *= (A[n]+1-low)
            res %= MOD
            v = max(A[n]-1,v//2)

        return res

    return main(N,K,A)

N,K = map(int,input().split())
A = list(map(int,input().split()))
print(check(N,K,A))
0