結果

問題 No.1349 Subset Product Queries
ユーザー KoDKoD
提出日時 2021-01-15 14:25:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 824 bytes
コンパイル時間 691 ms
コンパイル使用メモリ 80,328 KB
実行使用メモリ 13,824 KB
最終ジャッジ日時 2024-11-25 23:50:02
合計ジャッジ時間 62,421 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
8,448 KB
testcase_02 AC 2 ms
10,148 KB
testcase_03 AC 2 ms
8,576 KB
testcase_04 AC 3 ms
10,496 KB
testcase_05 AC 2 ms
8,576 KB
testcase_06 AC 2 ms
10,496 KB
testcase_07 AC 2 ms
8,448 KB
testcase_08 AC 2 ms
10,496 KB
testcase_09 AC 2 ms
8,576 KB
testcase_10 AC 2 ms
10,496 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>

using std::vector;
using std::cin;
using std::cout;

int main() {
    int N, Q, P;
    cin >> N >> Q >> P;
    vector<int> A(N);
    for (auto &x: A) {
        cin >> x;
    }
    while (Q--) {
        int l, r, k;
        cin >> l >> r >> k;
        l -= 1;
        vector<bool> make(P);
        for (int i = l; i < r; ++i) {
            vector<bool> next(P);
            for (int j = 0; j < P; ++j) {
                if (make[j]) {
                    next[j] = true;
                    next[(j * A[i]) % P] = true;
                }
            }
            next[A[i]] = true;
            make = std::move(next);
        }
        if (make[k]) {
            cout << "Yes\n";
        }
        else {
            cout << "No\n";
        }
    }
    return 0;
}
0