結果

問題 No.1349 Subset Product Queries
ユーザー KoDKoD
提出日時 2021-01-12 21:14:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 554 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 238,288 KB
最終ジャッジ日時 2024-05-04 12:22:21
合計ジャッジ時間 17,459 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 600 ms
44,484 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

def solve(stdin):
  N, Q = stdin[:2]
  A = stdin[2: 2 + N]
  dp = np.full((N + 1, 5001), -1)
  dp[0][0] = 0
  for i in range(N):
    for j in range(5001):
      dp[i + 1][j] = max(dp[i + 1][j], dp[i][j])
      if j + A[i] <= 5000:
        dp[i + 1][j + A[i]] = max(dp[i + 1][j + A[i]], dp[i][j])
    dp[i + 1][0] = i + 1

  for i in range(Q):
    l, r, k = stdin[2 + N + 3 * i: 2 + N + 3 * (i + 1)]
    if dp[r][k] >= l - 1:
      print("Yes")
    else:
      print("No")

solve(np.fromstring(open(0).read(), dtype=np.int64, sep=' '))
0