結果

問題 No.1349 Subset Product Queries
ユーザー deuteridayodeuteridayo
提出日時 2021-01-17 03:28:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 815 ms / 2,000 ms
コード長 771 bytes
コンパイル時間 1,470 ms
コンパイル使用メモリ 171,760 KB
実行使用メモリ 100,732 KB
最終ジャッジ日時 2024-11-29 00:45:30
合計ジャッジ時間 17,323 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 740 ms
98,448 KB
testcase_12 AC 711 ms
88,692 KB
testcase_13 AC 734 ms
88,520 KB
testcase_14 AC 723 ms
92,304 KB
testcase_15 AC 757 ms
93,796 KB
testcase_16 AC 750 ms
99,248 KB
testcase_17 AC 653 ms
65,456 KB
testcase_18 AC 422 ms
14,492 KB
testcase_19 AC 384 ms
11,644 KB
testcase_20 AC 670 ms
78,696 KB
testcase_21 AC 739 ms
89,760 KB
testcase_22 AC 618 ms
64,200 KB
testcase_23 AC 751 ms
84,208 KB
testcase_24 AC 579 ms
54,204 KB
testcase_25 AC 650 ms
74,552 KB
testcase_26 AC 815 ms
100,732 KB
testcase_27 AC 630 ms
66,472 KB
testcase_28 AC 642 ms
66,344 KB
testcase_29 AC 637 ms
64,944 KB
testcase_30 AC 681 ms
68,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using lint = long long;
#define endl '\n'
lint const mod = 1e9+7;
//long const mod = 998244353;


int main(){
    lint n,q,p;
    cin >> n >> q >> p;
    lint a[n];
    for(int i=0;i<n;i++)cin >> a[i];
    lint l[q];
    lint r[q];
    lint k[q];
    vector<vector<int>>dp(n+1,vector<int>(p,-1));
    dp[0][1] = 0;
    for(int i=0;i<n;i++){
        for(int j=0;j<p;j++){
            dp[i+1][(j * a[i]) % p] = max({dp[i][j], dp[i][(j*a[i])%p], dp[i+1][(j * a[i]%p)]});
            dp[i+1][j] = max({dp[i][j],dp[i+1][j]});
        }
        dp[i+1][a[i]] = i+1;
    }
    for(int i=0;i<q;i++){
        cin >> l[i] >> r[i] >> k[i];
        if(dp[r[i]][k[i]] >= l[i])cout << "Yes" << endl;
        else cout << "No"<<endl;
    }
}
0