結果

問題 No.1349 Subset Product Queries
ユーザー 👑 NachiaNachia
提出日時 2021-01-28 18:01:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 633 bytes
コンパイル時間 2,257 ms
コンパイル使用メモリ 200,996 KB
実行使用メモリ 101,336 KB
最終ジャッジ日時 2024-06-26 02:17:58
合計ジャッジ時間 7,143 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 3 ms
6,944 KB
testcase_11 AC 154 ms
95,096 KB
testcase_12 AC 147 ms
84,996 KB
testcase_13 AC 145 ms
85,652 KB
testcase_14 AC 151 ms
96,388 KB
testcase_15 AC 150 ms
90,532 KB
testcase_16 AC 156 ms
95,244 KB
testcase_17 AC 134 ms
84,144 KB
testcase_18 AC 93 ms
87,924 KB
testcase_19 AC 90 ms
89,800 KB
testcase_20 AC 144 ms
100,372 KB
testcase_21 AC 155 ms
101,336 KB
testcase_22 AC 136 ms
100,884 KB
testcase_23 AC 147 ms
101,248 KB
testcase_24 AC 127 ms
100,168 KB
testcase_25 AC 143 ms
101,004 KB
testcase_26 AC 158 ms
101,280 KB
testcase_27 AC 137 ms
100,940 KB
testcase_28 AC 138 ms
101,004 KB
testcase_29 AC 136 ms
100,920 KB
testcase_30 AC 137 ms
100,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using LL=long long;
using ULL=unsigned long long;
#define rep(i,n) for(int i=0; i<(n); i++)

int N,Q,P;
int A[5000];
int dp[5001][5000];

int main(){
  scanf("%d%d%d",&N,&Q,&P);
  rep(i,N) scanf("%d",&A[i]);
  rep(i,N+1) rep(j,P) dp[i][j]=-1;
  for(int i=0; i<N; i++){
    int to=0;
    rep(p,P) dp[i+1][p]=dp[i][p];
    for(int p=0; p<P; p++){
      dp[i+1][to]=max(dp[i+1][to],dp[i][p]);
      to+=A[i]; if(to>=P) to-=P;
    }
    dp[i+1][A[i]]=i;
  }
  rep(q,Q){
    int l,r,k; scanf("%d%d%d",&l,&r,&k); l--;
    if(dp[r][k]>=l) printf("Yes\n"); else printf("No\n");
  }
  return 0;
}
0