結果

問題 No.1349 Subset Product Queries
ユーザー penguinmanpenguinman
提出日時 2021-02-11 06:21:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,546 bytes
コンパイル時間 2,416 ms
コンパイル使用メモリ 212,432 KB
実行使用メモリ 192,128 KB
最終ジャッジ日時 2024-07-16 03:52:31
合計ジャッジ時間 19,010 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 912 ms
191,360 KB
testcase_12 AC 842 ms
181,888 KB
testcase_13 AC 845 ms
181,248 KB
testcase_14 WA -
testcase_15 AC 895 ms
186,880 KB
testcase_16 AC 924 ms
192,128 KB
testcase_17 WA -
testcase_18 AC 115 ms
10,240 KB
testcase_19 WA -
testcase_20 AC 693 ms
126,976 KB
testcase_21 WA -
testcase_22 AC 671 ms
91,776 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
//using namespace std;
#pragma GCC target("avx")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
#define rep(i,j,n) for(int i=(int)(j);i<(int)(n);i++)
#define REP(i,j,n) for(int i=(int)(j);i<=(int)(n);i++)
#define per(i,j,n) for(int i=(int)(j);(int)(n)<=i;i--)
#define ALL(a) (a).begin(),(a).end()
#define pb emplace_back
#define mp std::make_pair
//
#define endl "\n"
//using std::endl;
using std::cin;
using std::cout;
using ll=int;
using std::vector;
using std::string;
using std::upper_bound;
using std::lower_bound;
using vi=vector<ll>;
using vii=vector<vi>;
using pii=std::pair<ll,ll>;
int N,Q,P;
vii dp;
vii mem;
vi A;
ll dfs(ll now,ll val){
    if(dp[now][val]!=-1) return dp[now][val];
    if(now==0) return 0;
    if(A[now-1]==val) return now;
    dp[now][val]=std::max(dp[now][val],dfs(now-1,val));
    if(mem[A[now-1]][val]!=-1) dp[now][val]=std::max(dp[now][val],dfs(now-1,mem[A[now-1]][val]));
    return dp[now][val];
}
int main(){
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    std::cout.tie(nullptr);
    std::random_device rnd;
    std::mt19937 mt(rnd());
    cin>>N>>Q>>P;
    A.resize(N);
    rep(i,0,N) cin>>A[i];
    dp.resize(N+1,vi(P,-1));
    mem.resize(P,vi(P,-1));
    vi cnt(P);
    rep(i,0,P){
        rep(j,0,P) mem[i][i*j%P]=j;
    }
    while(Q--){
        ll L,R,K; cin>>L>>R>>K;
        string ans="No";
        if(dfs(R,K)>=L) ans="Yes";
        cout<<ans<<endl;
    }
}
0