結果

問題 No.854 公平なりんご分配
ユーザー finefine
提出日時 2019-07-26 22:47:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,407 ms / 3,153 ms
コード長 5,172 bytes
コンパイル時間 1,887 ms
コンパイル使用メモリ 184,364 KB
実行使用メモリ 246,784 KB
最終ジャッジ日時 2024-07-02 08:44:34
合計ジャッジ時間 15,787 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,936 KB
testcase_01 AC 5 ms
8,064 KB
testcase_02 AC 4 ms
7,936 KB
testcase_03 AC 5 ms
8,064 KB
testcase_04 AC 5 ms
8,064 KB
testcase_05 AC 5 ms
8,064 KB
testcase_06 AC 4 ms
8,064 KB
testcase_07 AC 4 ms
8,064 KB
testcase_08 AC 5 ms
7,936 KB
testcase_09 AC 5 ms
8,064 KB
testcase_10 AC 5 ms
8,064 KB
testcase_11 AC 5 ms
8,064 KB
testcase_12 AC 5 ms
8,320 KB
testcase_13 AC 5 ms
8,320 KB
testcase_14 AC 5 ms
7,936 KB
testcase_15 AC 4 ms
8,064 KB
testcase_16 AC 5 ms
8,320 KB
testcase_17 AC 5 ms
8,448 KB
testcase_18 AC 4 ms
8,320 KB
testcase_19 AC 4 ms
8,448 KB
testcase_20 AC 5 ms
8,448 KB
testcase_21 AC 4 ms
8,192 KB
testcase_22 AC 5 ms
8,448 KB
testcase_23 AC 5 ms
9,472 KB
testcase_24 AC 7 ms
10,240 KB
testcase_25 AC 6 ms
9,088 KB
testcase_26 AC 8 ms
10,368 KB
testcase_27 AC 7 ms
10,368 KB
testcase_28 AC 6 ms
8,576 KB
testcase_29 AC 5 ms
8,448 KB
testcase_30 AC 6 ms
9,088 KB
testcase_31 AC 8 ms
10,112 KB
testcase_32 AC 79 ms
59,136 KB
testcase_33 AC 94 ms
34,816 KB
testcase_34 AC 201 ms
78,592 KB
testcase_35 AC 136 ms
62,848 KB
testcase_36 AC 35 ms
11,136 KB
testcase_37 AC 79 ms
55,552 KB
testcase_38 AC 58 ms
46,208 KB
testcase_39 AC 355 ms
82,176 KB
testcase_40 AC 112 ms
30,976 KB
testcase_41 AC 138 ms
51,840 KB
testcase_42 AC 170 ms
77,440 KB
testcase_43 AC 233 ms
54,272 KB
testcase_44 AC 240 ms
71,296 KB
testcase_45 AC 146 ms
19,968 KB
testcase_46 AC 327 ms
71,424 KB
testcase_47 AC 100 ms
42,624 KB
testcase_48 AC 151 ms
76,160 KB
testcase_49 AC 137 ms
77,312 KB
testcase_50 AC 65 ms
55,424 KB
testcase_51 AC 323 ms
73,728 KB
testcase_52 AC 126 ms
36,480 KB
testcase_53 AC 64 ms
35,968 KB
testcase_54 AC 140 ms
41,728 KB
testcase_55 AC 44 ms
36,096 KB
testcase_56 AC 45 ms
37,632 KB
testcase_57 AC 71 ms
31,744 KB
testcase_58 AC 106 ms
17,664 KB
testcase_59 AC 38 ms
28,800 KB
testcase_60 AC 100 ms
31,872 KB
testcase_61 AC 22 ms
12,416 KB
testcase_62 AC 109 ms
28,032 KB
testcase_63 AC 57 ms
29,184 KB
testcase_64 AC 24 ms
16,128 KB
testcase_65 AC 92 ms
68,864 KB
testcase_66 AC 51 ms
23,040 KB
testcase_67 AC 99 ms
46,336 KB
testcase_68 AC 74 ms
24,192 KB
testcase_69 AC 77 ms
82,304 KB
testcase_70 AC 35 ms
31,232 KB
testcase_71 AC 41 ms
33,536 KB
testcase_72 AC 40 ms
11,392 KB
testcase_73 AC 62 ms
56,832 KB
testcase_74 AC 133 ms
67,712 KB
testcase_75 AC 70 ms
33,792 KB
testcase_76 AC 84 ms
54,400 KB
testcase_77 AC 102 ms
74,880 KB
testcase_78 AC 125 ms
26,112 KB
testcase_79 AC 135 ms
48,128 KB
testcase_80 AC 135 ms
50,560 KB
testcase_81 AC 78 ms
51,840 KB
testcase_82 AC 244 ms
246,784 KB
testcase_83 AC 442 ms
246,656 KB
testcase_84 AC 423 ms
246,656 KB
testcase_85 AC 445 ms
246,656 KB
testcase_86 AC 222 ms
246,656 KB
testcase_87 AC 245 ms
246,784 KB
testcase_88 AC 246 ms
246,784 KB
testcase_89 AC 249 ms
246,656 KB
testcase_90 AC 252 ms
246,656 KB
testcase_91 AC 252 ms
246,784 KB
testcase_92 AC 1,386 ms
246,656 KB
testcase_93 AC 1,407 ms
246,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long long;

bool is_prime(int n) {
    if (n % 2 == 0) return false;
    for (int i = 2; i * i <= n; i++) {
        if (n % i == 0) return false;
    }
    return n != 1;
}

vector<int> divisor(int n) {
    vector<int> res;
    for (int i = 1; i * i <= n; i++) {
        if (n % i == 0) {
            res.emplace_back(i);
            if (i != n / i) res.emplace_back(n / i);
        }
    }
    return res;
}

map<int, int> prime_factor(int n) {
    map<int, int> res;
    for (int i = 2; i * i <= n; i++) {
        while (n % i == 0) {
            ++res[i];
            n /= i;
        }
    }
    if (n != 1) res[n] = 1;
    return res;
}

vector<int> sieve(int n) {
    vector<int> res;
    vector<bool> is_prime(n + 1, true);
    is_prime[0] = false;
    is_prime[1] = false;
    for (int i = 2; i <= n; i++) {
        if (!is_prime[i]) continue;
        res.emplace_back(i);
        for (int j = 2 * i; j <= n; j += i) is_prime[j] = false;
    }
    return res;
}

template <typename T>
struct SegmentTree {
    int n;
    vector<T> data;
    T INITIAL_VALUE;

    //使うときは、この2つを適宜変更する
    static T merge(T x, T y);
    void updateNode(int k, T x);

    SegmentTree(int size, T initial_value) {
        n = 1;
        INITIAL_VALUE = initial_value;
        while (n < size) n *= 2;
        data.resize(2 * n - 1, INITIAL_VALUE);
    }

    SegmentTree(const vector<T>& v, T initial_value) {
        int size = v.size();
        n = 1;
        INITIAL_VALUE = initial_value;
        while (n < size) n *= 2;
        data.resize(2 * n - 1, INITIAL_VALUE);

        for (int i = 0; i < size; i++) data[i + n - 1] = v[i];
        for (int i = n - 2; i >= 0; i--) data[i] = merge(data[i * 2 + 1], data[i * 2 + 2]);
    }

    T getLeaf(int k) {
        return data[k + n - 1];
    }

    void update(int k, T x) {
        k += n - 1; //葉の節点
        updateNode(k, x);
        while (k > 0) {
            k = (k - 1) / 2;
            data[k] = merge(data[k * 2 + 1], data[k * 2 + 2]);
        }
    }

    //区間[a, b)に対するクエリに答える
    //k:節点番号, [l, r):節点に対応する区間
    T query(int a, int b, int k, int l, int r) {
        //[a, b)と[l, r)が交差しない場合
        if (r <= a || b <= l) return INITIAL_VALUE;
        //[a, b)が[l, r)を含む場合、節点の値
        if (a <= l && r <= b) return data[k];
        else {
            //二つの子をマージ
            T vl = query(a, b, k * 2 + 1, l, (l + r) / 2);
            T vr = query(a, b, k * 2 + 2, (l + r) / 2, r);
            return merge(vl, vr);
        }
    }

    //外から呼ぶ用
    T query(int a, int b) {
        return query(a, b, 0, 0, n);
    }

    //非再帰版: バグってるかもしれないので定数倍高速化する時以外使わないで
    //区間[a, b)に対するクエリに答える
    T query_fast(int a, int b) {
        T vl = INITIAL_VALUE, vr = INITIAL_VALUE;
        for (int l = a + n, r = b + n; l != r; l >>= 1, r >>= 1) {
            if (l & 1) vl = merge(vl, data[l++ - 1]);
            if (r & 1) vr = merge(data[--r - 1], vr);
        }
        return merge(vl, vr);
    }
};

//使うときは以下2つを変更
//非可換の場合は順序に注意!!!
template <typename T>
T SegmentTree<T>::merge(T x, T y) {
    return x + y;
}

template <typename T>
void SegmentTree<T>::updateNode(int k, T x) {
    data[k] = x;
}

const int MAXV = 2000;
const ll INF = 1000000000;

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    vector<int> sv = sieve(MAXV);
    /* 
    vector<int> ids(MAXV + 1, -1);
    for (int i = 0; i < sv.size(); i++) {
        ids[sv[i]] = i;
    }*/

    vector< vector<ll> > cnt(MAXV + 1, vector<ll>(sv.size(), 0));
    cnt[0] = vector<ll>(sv.size(), INF);
    for (int i = 0; i < sv.size(); i++) {
        int x = sv[i];
        for (int j = x; j <= MAXV; j += x) {
            int d = j;
            while (d % x == 0) {
                cnt[j][i]++;
                d /= x;
            }
        }
    }

    int n;
    cin >> n;
    vector<int> a(n);
    for (int i = 0; i < n; i++) cin >> a[i];

    vector< vector<ll> > vst(sv.size(), vector<ll>(n + 1, 0));
    for (int i = 0; i < sv.size(); i++) {
        for (int j = 0; j < n; j++) {
            vst[i][j + 1] = vst[i][j] + cnt[a[j]][i];
        }
    }

    int q;
    cin >> q;
    for (int i = 0; i < q; i++) {
        int p, l, r;
        cin >> p >> l >> r;
        l--;
        bool ans = true;
        bool f0 = false;
        for (int j = 0; j < sv.size(); j++) {
            ll x = 0;
            while (p % sv[j] == 0) {
                x++;
                p /= sv[j];
            }
            ll sum = vst[j][r] - vst[j][l];
            //cerr << sum << " ";
            if (sum >= INF) {
                ans = true;
                f0 = true;
                break;
            }
            if (x > sum) {
                ans = false;
                break;
            }
        }
        if (!f0) ans &= (p == 1);
        cout << (ans ? "Yes" : "NO") << "\n";
    }
    return 0;
}
0