結果

問題 No.1349 Subset Product Queries
ユーザー hamrayhamray
提出日時 2021-09-03 23:33:29
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 255 ms / 2,000 ms
コード長 1,659 bytes
コンパイル時間 1,988 ms
コンパイル使用メモリ 172,960 KB
実行使用メモリ 96,000 KB
最終ジャッジ日時 2024-05-09 07:40:12
合計ジャッジ時間 8,705 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 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 2 ms
5,376 KB
testcase_11 AC 248 ms
93,824 KB
testcase_12 AC 229 ms
83,840 KB
testcase_13 AC 227 ms
83,584 KB
testcase_14 AC 238 ms
87,552 KB
testcase_15 AC 238 ms
88,960 KB
testcase_16 AC 247 ms
94,592 KB
testcase_17 AC 185 ms
60,800 KB
testcase_18 AC 83 ms
9,472 KB
testcase_19 AC 75 ms
6,784 KB
testcase_20 AC 210 ms
73,856 KB
testcase_21 AC 231 ms
84,992 KB
testcase_22 AC 183 ms
59,392 KB
testcase_23 AC 222 ms
79,360 KB
testcase_24 AC 164 ms
49,408 KB
testcase_25 AC 205 ms
69,760 KB
testcase_26 AC 255 ms
96,000 KB
testcase_27 AC 188 ms
61,696 KB
testcase_28 AC 187 ms
61,568 KB
testcase_29 AC 186 ms
60,288 KB
testcase_30 AC 191 ms
63,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
//#include <atcoder/all>
//using namespace atcoder;
#pragma GCC target ("avx2")
#pragma GCC optimization ("O3")
#pragma GCC optimization ("unroll-loops")
using namespace std;
 
typedef vector<int> VI;
typedef vector<VI> VVI;
typedef vector<string> VS;
typedef pair<int, int> PII;
typedef pair<int, int> pii;
typedef pair<long long, long long> PLL;
typedef pair<int, PII> TIII;
 
typedef long long ll;
typedef long double ld;
typedef unsigned long long ull;
 
 
#define FOR(i, s, n) for (int i = s; i < (int)n; ++i)
#define REP(i, n) FOR(i, 0, n)
#define rep(i, a, b) for (int i = a; i < (b); ++i)
#define trav(a, x) for (auto &a : x)
#define all(x) x.begin(), x.end()
 
#define MOD 1000000007
 
template<class T1, class T2> inline bool chmax(T1 &a, T2 b) {if (a < b) {a = b; return true;} return false;}
template<class T1, class T2> inline bool chmin(T1 &a, T2 b) {if (a > b) {a = b; return true;} return false;}
const double EPS = 1e-8, PI = acos(-1);
const double pi = 3.141592653589793238462643383279;
//ここから編集    

int main() {  
  cin.tie(0);
  ios::sync_with_stdio(false);
  cout << fixed << setprecision(12);

  int n, q, p; cin >> n >> q >> p;
  vector<int> a(n);
  REP(i,n) cin >> a[i];
  
  vector<vector<int>> dp(n+1, vector<int>(p, -1));
  for(int i=0; i<n; i++) {
    for(int j=0; j<p; j++) {
      dp[i+1][j] = max(dp[i+1][j], dp[i][j]);
      dp[i+1][(j*a[i])%p] = max(dp[i+1][(j*a[i])%p], dp[i][j]);
    }
    dp[i+1][a[i]] = i;
  }

  REP(i,q) {
    int l, r, k; cin >> l >> r >> k;
    
    if(dp[r][k] >= l-1) {
      cout << "Yes" << '\n';
    }else{
      cout << "No" << '\n';
    }
  }
  return 0;
}
0