結果

問題 No.868 ハイパー部分和問題
ユーザー convexineqconvexineq
提出日時 2020-11-22 04:37:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 656 bytes
コンパイル時間 411 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-07-23 16:13:10
合計ジャッジ時間 35,987 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 44 ms
58,752 KB
testcase_02 AC 44 ms
58,624 KB
testcase_03 AC 43 ms
58,496 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 38 ms
52,352 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 39 ms
51,840 KB
testcase_08 AC 39 ms
51,840 KB
testcase_09 AC 39 ms
52,608 KB
testcase_10 AC 38 ms
51,840 KB
testcase_11 AC 39 ms
52,480 KB
testcase_12 AC 39 ms
51,968 KB
testcase_13 AC 39 ms
52,480 KB
testcase_14 AC 1,548 ms
76,772 KB
testcase_15 AC 1,535 ms
76,852 KB
testcase_16 AC 1,559 ms
76,724 KB
testcase_17 AC 1,538 ms
76,692 KB
testcase_18 AC 1,585 ms
76,708 KB
testcase_19 AC 1,071 ms
77,068 KB
testcase_20 AC 1,076 ms
76,928 KB
testcase_21 AC 1,092 ms
77,184 KB
testcase_22 AC 1,085 ms
77,000 KB
testcase_23 AC 1,086 ms
76,680 KB
testcase_24 AC 1,088 ms
76,692 KB
testcase_25 AC 1,087 ms
76,672 KB
testcase_26 AC 1,085 ms
76,800 KB
testcase_27 AC 1,090 ms
77,064 KB
testcase_28 AC 1,095 ms
76,800 KB
testcase_29 AC 811 ms
76,788 KB
testcase_30 AC 808 ms
76,752 KB
testcase_31 AC 801 ms
76,800 KB
testcase_32 AC 1,525 ms
76,800 KB
testcase_33 AC 1,533 ms
77,312 KB
testcase_34 AC 2,422 ms
77,768 KB
testcase_35 AC 2,420 ms
77,824 KB
testcase_36 AC 1,695 ms
76,752 KB
testcase_37 AC 1,699 ms
76,928 KB
testcase_38 AC 38 ms
51,712 KB
testcase_39 AC 39 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
import sys
readline = sys.stdin.readline
read = sys.stdin.read

n,k = map(int,readline().split())
*a, = map(int,readline().split())

def mul(c,m,dp): #multiply (1+x^c) up to x^m
    for i in range(m,c-1,-1):
        dp[i] += dp[i-c]
        dp[i] %= MOD
 
def div(c,m,dp): #divide by (1+x^c) up to x^m
    for i in range(m-c+1):
        dp[i+c] -= dp[i]
        dp[i+c] %= MOD

MOD = 10**9+7
dp = [0]*(k+1)
dp[0] = 1
for i in a:
    mul(i,k,dp)

q = int(readline())
for _ in range(q):
    x,v = map(int,readline().split())
    if a[x-1]: div(a[x-1],k,dp)
    if v: mul(v,k,dp)
    a[x-1] = v
    print(1 if dp[-1] else 0)
0