結果
問題 | No.1349 Subset Product Queries |
ユーザー | rabimea |
提出日時 | 2023-03-01 18:44:17 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,112 bytes |
コンパイル時間 | 2,234 ms |
コンパイル使用メモリ | 204,036 KB |
実行使用メモリ | 60,544 KB |
最終ジャッジ日時 | 2024-09-16 16:14:49 |
合計ジャッジ時間 | 14,990 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define fi first #define se second #define pb push_back using vi = vector <int>; using ll = long long; using vl = vector <ll>; using pii = pair <int, int>; const ll mod = 998244353; //~ const ll mod = 1e9 + 7; ll qpow(ll a, ll b, ll m = mod) { ll r = 1, t = a; for(; b; b /= 2) { if(b & 1) r = r * t % m; t = t * t % m; } return r; } const int N = 5e3 + 11; int f[N][N]; int a[N]; void chmax(int &a, int b) { if(a < b) a = b; } struct Query { int l, r, k; int id; }; vector <Query> qs[N]; int ans[N]; int main() { ios::sync_with_stdio(0); int n, q, p; cin >> n >> q >> p; for(int i = 1; i <= n; i ++) cin >> a[i]; for(int i = 1; i <= q; i ++) { int l, r, k; cin >> l >> r >> k; qs[r].pb({l, r, l, i}); } for(int i = 1; i <= n; i ++) { for(int j = 0; j < p; j ++) { chmax(f[i][j], f[i - 1][j]); chmax(f[i][j * a[i] % p], f[i - 1][j]); } f[i][a[i]] = i; for(Query q : qs[i]) if(f[i][q.k] >= q.l) ans[q.id] = 1; else ans[q.id] = 0; } for(int i = 1; i <= q; i ++) cout << (ans[i] ? "Yes" : "No") << '\n'; }