結果
問題 | No.1349 Subset Product Queries |
ユーザー | 👑 Nachia |
提出日時 | 2021-01-28 17:59:30 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 614 bytes |
コンパイル時間 | 2,111 ms |
コンパイル使用メモリ | 202,096 KB |
実行使用メモリ | 101,348 KB |
最終ジャッジ日時 | 2024-06-26 02:16:45 |
合計ジャッジ時間 | 7,921 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 272 ms
94,200 KB |
testcase_12 | AC | 242 ms
85,696 KB |
testcase_13 | AC | 247 ms
84,544 KB |
testcase_14 | WA | - |
testcase_15 | AC | 264 ms
89,552 KB |
testcase_16 | AC | 276 ms
95,688 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
ソースコード
#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; for(int p=0; p<P; p++){ dp[i+1][to]=max(dp[i+1][to],max(dp[i][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; }