結果

問題 No.854 公平なりんご分配
ユーザー kibunakibuna
提出日時 2019-07-26 22:27:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 2,197 bytes
コンパイル時間 1,574 ms
コンパイル使用メモリ 179,416 KB
実行使用メモリ 821,484 KB
最終ジャッジ日時 2024-07-02 07:58:39
合計ジャッジ時間 65,648 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 1 ms
6,948 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 1 ms
6,944 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 9 ms
6,940 KB
testcase_23 AC 13 ms
6,940 KB
testcase_24 AC 29 ms
9,344 KB
testcase_25 AC 9 ms
6,940 KB
testcase_26 AC 31 ms
9,600 KB
testcase_27 AC 24 ms
9,472 KB
testcase_28 AC 8 ms
6,940 KB
testcase_29 AC 5 ms
6,940 KB
testcase_30 AC 9 ms
6,944 KB
testcase_31 AC 26 ms
8,448 KB
testcase_32 AC 970 ms
289,280 KB
testcase_33 AC 795 ms
146,048 KB
testcase_34 MLE -
testcase_35 AC 1,227 ms
311,168 KB
testcase_36 AC 277 ms
13,440 KB
testcase_37 AC 925 ms
268,160 KB
testcase_38 AC 707 ms
215,936 KB
testcase_39 MLE -
testcase_40 AC 832 ms
124,800 KB
testcase_41 AC 1,102 ms
247,552 KB
testcase_42 MLE -
testcase_43 AC 1,533 ms
259,968 KB
testcase_44 MLE -
testcase_45 AC 1,126 ms
58,368 KB
testcase_46 MLE -
testcase_47 AC 886 ms
195,200 KB
testcase_48 MLE -
testcase_49 MLE -
testcase_50 AC 851 ms
265,984 KB
testcase_51 MLE -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 MLE -
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 MLE -
testcase_70 WA -
testcase_71 WA -
testcase_72 WA -
testcase_73 WA -
testcase_74 MLE -
testcase_75 WA -
testcase_76 WA -
testcase_77 MLE -
testcase_78 WA -
testcase_79 WA -
testcase_80 WA -
testcase_81 WA -
testcase_82 MLE -
testcase_83 -- -
testcase_84 -- -
testcase_85 -- -
testcase_86 -- -
testcase_87 -- -
testcase_88 -- -
testcase_89 -- -
testcase_90 -- -
testcase_91 -- -
testcase_92 -- -
testcase_93 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
using ll = long long;
using pii = pair<int, int>;
using pll = pair<ll, ll>;
using vi = vector<int>;
using vl = vector<ll>;
using vvi = vector<vi>;
using vvl = vector<vl>;
const ll INF = 1LL << 60;
const ll MOD = 1000000007;
template <class T>
bool chmax(T &a, const T &b) {
    return (a < b) ? (a = b, 1) : 0;
}
template <class T>
bool chmin(T &a, const T &b) {
    return (b < a) ? (a = b, 1) : 0;
}

template <typename T = int>
void primeFactors(T a, map<T, int> &facs) {
    double sqrtA = sqrt(a);
    for (int i = 2; i <= sqrtA + 1e-10; ++i) {
        while (a % i == 0) {
            facs[i]++;
            a /= i;
        }
    }
    if (a > sqrtA)
        facs[a]++;
    return;
}

template <typename T = int>
void primeFactorsP(T a, map<T, int> &facs) {
    T origa = a;
    for (int i = 2; i <= 2000 && i * i <= origa; ++i) { // don't check p > 2000
        while (a % i == 0) {
            facs[i]++;
            a /= i;
        }
    }
    if (a > 1)
        facs[a]++;
    return;
}

int main() {
    int n;
    cin >> n;
    vi a(n);
    for (int i = 0; i < n; ++i) {
        cin >> a[i];
    }
    int q;
    cin >> q;
    vi p(q), l(q), r(q);
    for (int i = 0; i < q; ++i) {
        cin >> p[i] >> l[i] >> r[i];
        l[i]--;
        r[i]--;
    }

    vector<map<int, int>> facs(n);
    for (int i = 0; i < n; ++i) {
        primeFactors(a[i], facs[i]);
    }
    for (int i = 0; i < n - 1; ++i) {
        for (auto &ff : facs[i]) {
            facs[i + 1][ff.first] += ff.second;
        }
    }
    for (int i = 0; i < q; ++i) {
        map<int, int> facsToUse = facs[r[i]];
        if (l[i] > 0) {
            for (auto &ff : facs[l[i] - 1]) {
                facsToUse[ff.first] -= ff.second;
            }
        }
        map<int, int> pprimes;
        primeFactorsP(p[i], pprimes);
        bool ok = true;
        for (auto &pp : pprimes) {
            if (facsToUse[pp.first] < pp.second) {
                ok = false;
                break;
            }
        }
        if (ok)
            cout << "Yes"
                 << "\n";
        else
            cout << "NO"
                 << "\n";
    }

    return 0;
}
0