結果

問題 No.1349 Subset Product Queries
ユーザー milanis48663220milanis48663220
提出日時 2021-05-10 22:50:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 657 ms / 2,000 ms
コード長 1,369 bytes
コンパイル時間 1,079 ms
コンパイル使用メモリ 119,064 KB
実行使用メモリ 101,128 KB
最終ジャッジ日時 2024-09-20 03:36:11
合計ジャッジ時間 15,308 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 647 ms
94,080 KB
testcase_12 AC 642 ms
83,840 KB
testcase_13 AC 599 ms
83,968 KB
testcase_14 AC 586 ms
95,744 KB
testcase_15 AC 645 ms
89,216 KB
testcase_16 AC 657 ms
94,788 KB
testcase_17 AC 497 ms
76,800 KB
testcase_18 AC 329 ms
27,136 KB
testcase_19 AC 323 ms
24,448 KB
testcase_20 AC 579 ms
93,440 KB
testcase_21 AC 545 ms
101,128 KB
testcase_22 AC 479 ms
79,360 KB
testcase_23 AC 520 ms
99,328 KB
testcase_24 AC 443 ms
69,504 KB
testcase_25 AC 484 ms
89,856 KB
testcase_26 AC 530 ms
101,120 KB
testcase_27 AC 460 ms
81,536 KB
testcase_28 AC 454 ms
81,536 KB
testcase_29 AC 472 ms
80,128 KB
testcase_30 AC 476 ms
83,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <tuple>
#include <cmath>
#include <numeric>
#include <functional>
#include <cassert>

#define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl;
#define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl;

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

using namespace std;
typedef long long ll;
const int INF = 1e9;

int dp[5005][5005];

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    int n, q, p; cin >> n >> q >> p;
    vector<int> a(n);
    for(int i = 0; i < n; i++) cin >> a[i];
    for(int i = 0; i < n; i++){
        for(int j = 0; j < p; j++){
            dp[i][j] = -INF;
        }
    }
    dp[0][a[0]] = 0;
    for(int i = 1; i < n; i++){
        for(int j = 0; j < p; j++) dp[i][j] = dp[i-1][j];
        dp[i][a[i]] = i;
        for(int j = 0; j < p; j++){
            chmax(dp[i][(j*a[i])%p], dp[i-1][j]);
        }
    }
    while(q--){
        int l, r, k; cin >> l >> r >> k; l--; r--;
        cout << (dp[r][k] >= l ? "Yes" : "No") << endl;
    }
}
0