/ SeriousOJ /

Record Detail

Time Exceeded


  
# Status Time Cost Memory Cost
#1 Accepted 2ms 832.0 KiB
#2 Accepted 3ms 832.0 KiB
#3 Accepted 195ms 1.133 MiB
#4 Accepted 193ms 1.156 MiB
#5 Accepted 225ms 1.621 MiB
#6 Accepted 259ms 1.586 MiB
#7 Accepted 324ms 6.105 MiB
#8 Accepted 371ms 6.527 MiB
#9 Accepted 328ms 6.484 MiB
#10 Accepted 480ms 45.699 MiB
#11 Accepted 353ms 35.141 MiB
#12 Accepted 418ms 41.188 MiB
#13 Accepted 359ms 7.027 MiB
#14 Accepted 330ms 6.371 MiB
#15 Accepted 249ms 1.203 MiB
#16 Accepted 252ms 1.184 MiB
#17 Accepted 168ms 1.293 MiB
#18 Accepted 527ms 1.234 MiB
#19 Accepted 569ms 1.57 MiB
#20 Accepted 659ms 7.492 MiB
#21 Accepted 907ms 58.762 MiB
#22 Accepted 929ms 60.617 MiB
#23 Accepted 212ms 7.668 MiB
#24 Accepted 1192ms 56.492 MiB
#25 Time Exceeded ≥1584ms ≥7.633 MiB
#26 Accepted 464ms 1.102 MiB
#27 Time Exceeded ≥1594ms ≥7.445 MiB

Code

#include <bits/stdc++.h>
#define ll long long
#define F first
#define S second
#define endl '\n'
#define Endl '\n'

using namespace std;

const int N = 2e5 + 5;
int tc, n, x, a[N];
bool isPrime[N];
vector<int> primes;
map<int, int> xFact;
map<pair<int, int>, int> adj;

void sieve() {
    memset(isPrime, 1, sizeof isPrime);
    isPrime[0] = isPrime[1] = 0;
    for (int i = 2; i * i < N; i++) {
        if (isPrime[i]) {
            for (int j = i * i; j < N; j += i) {
                isPrime[j] = 0;
            }
        }
    }
    for (int i = 2; i < N; i++) {
        if (isPrime[i]) {
            primes.push_back(i);
        }
    }
}

map<int, int> factorize(int x) {
    map<int, int> fact;
    for (int i = 0; i < primes.size() && primes[i] * primes[i] <= x; i++) {
        while (x % primes[i] == 0) {
            fact[primes[i]]++;
            x /= primes[i];
        }
    }
    if (x > 1) {
        fact[x]++;
    }
    return fact;
}

void buildAdjascentList() {
    map<int, int> fact;
    set<int> st, seen;
    for (int i = 0; i < n; i++) {
        fact.clear();
        seen.clear();
        fact = factorize(a[i]);
        for (auto p : fact) {
            int previousVal = 0;
            if (i) {
                previousVal = adj[{i - 1, p.first}];
            }
            adj[{i, p.first}] = previousVal + p.second;
            seen.insert(p.first);
        }
        // fill the gaps
        for (auto p : xFact) {
            if (!seen.count(p.first)) {
                adj[{i, p.first}] = (i ? adj[{i - 1, p.first}] : 0);
            }
        }
    }
}

int main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0); // cout.tie(0);
    sieve();
    cin >> tc;
    while (tc--) {
        cin >> n >> x;
        for (int i = 0; i < n; i++) {
            cin >> a[i];
        }
        xFact.clear();
        adj.clear();
        xFact = factorize(x);
        buildAdjascentList();

        int q;
        cin >> q;
        while (q--) {
            int l, r;
            cin >> l >> r;
            l--, r--;
            bool ok = 1;
            for (auto p : xFact) {
                int cnt = adj[{r, p.first}];
                if (l) {
                    cnt -= adj[{l - 1, p.first}];
                }
                if (cnt < p.second) {
                    ok = 0;
                    break;
                }
            }
            cout << (ok ? "Yes" : "No") << endl;
        }
    }

    return 0;
}

Information

Submit By
Type
Submission
Problem
P1128 Roy and Product
Contest
Lockout contest round-1 ( Mazharul Islam vs Thakur Emon)
Language
C++17 (G++ 13.2.0)
Submit At
2024-11-04 17:33:18
Judged At
2024-11-11 02:33:39
Judged By
Score
95
Total Time
≥1594ms
Peak Memory
≥60.617 MiB