結果

問題 No.1349 Subset Product Queries
ユーザー rabimearabimea
提出日時 2023-03-01 18:47:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 432 ms / 2,000 ms
コード長 1,137 bytes
コンパイル時間 2,080 ms
コンパイル使用メモリ 204,040 KB
実行使用メモリ 107,648 KB
最終ジャッジ日時 2024-09-16 16:17:00
合計ジャッジ時間 10,670 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 429 ms
100,352 KB
testcase_12 AC 392 ms
90,240 KB
testcase_13 AC 390 ms
90,112 KB
testcase_14 AC 386 ms
102,144 KB
testcase_15 AC 412 ms
95,616 KB
testcase_16 AC 432 ms
101,248 KB
testcase_17 AC 304 ms
83,072 KB
testcase_18 AC 120 ms
33,280 KB
testcase_19 AC 108 ms
30,592 KB
testcase_20 AC 374 ms
99,712 KB
testcase_21 AC 348 ms
107,648 KB
testcase_22 AC 274 ms
85,632 KB
testcase_23 AC 344 ms
105,156 KB
testcase_24 AC 255 ms
75,264 KB
testcase_25 AC 304 ms
95,744 KB
testcase_26 AC 353 ms
107,648 KB
testcase_27 AC 278 ms
87,936 KB
testcase_28 AC 277 ms
87,552 KB
testcase_29 AC 282 ms
86,656 KB
testcase_30 AC 295 ms
89,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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];

const int M = 2e5 + 11;
int ans[M];

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, k, 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';
}

0