結果

問題 No.854 公平なりんご分配
ユーザー MisterMister
提出日時 2020-08-05 12:46:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,861 bytes
コンパイル時間 688 ms
コンパイル使用メモリ 79,632 KB
実行使用メモリ 39,612 KB
最終ジャッジ日時 2023-10-14 11:53:33
合計ジャッジ時間 10,287 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,352 KB
testcase_01 AC 2 ms
4,356 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 1 ms
4,348 KB
testcase_04 AC 1 ms
4,348 KB
testcase_05 AC 1 ms
4,352 KB
testcase_06 AC 1 ms
4,348 KB
testcase_07 AC 1 ms
4,348 KB
testcase_08 AC 2 ms
4,356 KB
testcase_09 AC 2 ms
4,352 KB
testcase_10 AC 2 ms
4,352 KB
testcase_11 AC 2 ms
4,352 KB
testcase_12 AC 2 ms
4,352 KB
testcase_13 AC 2 ms
4,348 KB
testcase_14 AC 1 ms
4,352 KB
testcase_15 AC 1 ms
4,348 KB
testcase_16 AC 1 ms
4,352 KB
testcase_17 AC 2 ms
4,352 KB
testcase_18 AC 1 ms
4,348 KB
testcase_19 AC 2 ms
4,348 KB
testcase_20 AC 2 ms
4,352 KB
testcase_21 AC 1 ms
4,348 KB
testcase_22 AC 3 ms
4,352 KB
testcase_23 AC 4 ms
4,348 KB
testcase_24 AC 5 ms
4,352 KB
testcase_25 AC 2 ms
4,348 KB
testcase_26 AC 5 ms
4,348 KB
testcase_27 AC 5 ms
4,348 KB
testcase_28 AC 3 ms
4,352 KB
testcase_29 AC 2 ms
4,352 KB
testcase_30 AC 3 ms
4,352 KB
testcase_31 AC 4 ms
4,352 KB
testcase_32 AC 74 ms
28,140 KB
testcase_33 AC 76 ms
16,408 KB
testcase_34 AC 173 ms
37,612 KB
testcase_35 AC 114 ms
30,240 KB
testcase_36 AC 23 ms
4,620 KB
testcase_37 AC 69 ms
26,460 KB
testcase_38 AC 53 ms
22,172 KB
testcase_39 AC 300 ms
39,612 KB
testcase_40 AC 84 ms
14,640 KB
testcase_41 AC 117 ms
24,816 KB
testcase_42 AC 157 ms
37,152 KB
testcase_43 AC 197 ms
25,884 KB
testcase_44 AC 212 ms
34,360 KB
testcase_45 AC 73 ms
9,172 KB
testcase_46 AC 285 ms
34,172 KB
testcase_47 AC 86 ms
20,180 KB
testcase_48 AC 136 ms
36,432 KB
testcase_49 AC 132 ms
37,260 KB
testcase_50 AC 64 ms
26,536 KB
testcase_51 AC 281 ms
35,768 KB
testcase_52 TLE -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
testcase_66 -- -
testcase_67 -- -
testcase_68 -- -
testcase_69 -- -
testcase_70 -- -
testcase_71 -- -
testcase_72 -- -
testcase_73 -- -
testcase_74 -- -
testcase_75 -- -
testcase_76 -- -
testcase_77 -- -
testcase_78 -- -
testcase_79 -- -
testcase_80 -- -
testcase_81 -- -
testcase_82 -- -
testcase_83 -- -
testcase_84 -- -
testcase_85 -- -
testcase_86 -- -
testcase_87 -- -
testcase_88 -- -
testcase_89 -- -
testcase_90 -- -
testcase_91 -- -
testcase_92 -- -
testcase_93 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

template <class T>
std::vector<T> vec(int len, T elem) { return std::vector<T>(len, elem); }

struct Prime {
    int max_n;
    std::vector<int> primes;
    std::vector<bool> isp;

    explicit Prime(int max_n)
        : max_n(max_n), isp(max_n + 1, true) {
        isp[0] = isp[1] = false;
        for (int i = 2; i * i <= max_n; ++i) {
            if (isp[i]) {
                for (int j = i; i * j <= max_n; ++j) {
                    isp[i * j] = false;
                }
            }
        }

        for (int p = 2; p <= max_n; ++p) {
            if (isp[p]) primes.push_back(p);
        }
    }

    template <class T>
    bool isprime(T n) const {
        if (n <= max_n) return isp[n];
        for (T p : primes) {
            if (p * p > n) break;
            if (n % p == 0) return false;
        }
        return true;
    }

    template <class T>
    std::vector<std::pair<T, int>> factorize(T n) const {
        std::vector<std::pair<T, int>> facts;
        for (T p : primes) {
            if (p * p > n) break;
            if (n % p != 0) continue;
            int exp = 0;
            while (n % p == 0) {
                n /= p;
                ++exp;
            }
            facts.emplace_back(p, exp);
        }
        if (n > 1) {
            facts.emplace_back(n, 1);
        }
        return facts;
    }

    template <class T>
    static std::vector<T> divisors(T n) {
        std::vector<T> ret;
        for (T p = 1; p * p <= n; ++p) {
            if (n % p != 0) continue;
            ret.push_back(p);
            if (n / p == p) continue;
            ret.push_back(n / p);
        }
        return ret;
    }
};

const Prime P(2000);

void solve() {
    const auto& ps = P.primes;
    const int m = ps.size();

    int n;
    std::cin >> n;

    auto sums = vec(m, vec(n + 1, 0));

    for (int i = 1; i <= n; ++i) {
        int x;
        std::cin >> x;

        for (int j = 0; j < m; ++j) {
            const auto& p = ps[j];

            auto& cnt = sums[j][i];
            cnt = sums[j][i - 1];

            while (x % p == 0) {
                x /= p;
                ++cnt;
            }
        }
    }

    int q;
    std::cin >> q;
    while (q--) {
        int x, l, r;
        std::cin >> x >> l >> r;
        --l;

        bool judge = true;
        for (int j = 0; j < m; ++j) {
            const auto& p = ps[j];

            int cnt = sums[j][r] - sums[j][l];
            while (x % p == 0) {
                x /= p;
                --cnt;
            }

            if (cnt < 0) {
                judge = false;
                break;
            }
        }

        if (x != 1) judge = false;

        std::cout << (judge ? "Yes" : "NO") << "\n";
    }
}

int main() {
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);

    solve();

    return 0;
}
0