結果

問題 No.854 公平なりんご分配
ユーザー t33ft33f
提出日時 2019-07-26 23:00:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 405 ms / 3,153 ms
コード長 1,489 bytes
コンパイル時間 634 ms
コンパイル使用メモリ 77,088 KB
実行使用メモリ 121,936 KB
最終ジャッジ日時 2024-07-02 08:59:48
合計ジャッジ時間 10,005 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,948 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 4 ms
6,940 KB
testcase_23 AC 4 ms
6,940 KB
testcase_24 AC 5 ms
6,940 KB
testcase_25 AC 3 ms
6,944 KB
testcase_26 AC 6 ms
6,944 KB
testcase_27 AC 4 ms
6,944 KB
testcase_28 AC 3 ms
6,940 KB
testcase_29 AC 3 ms
6,940 KB
testcase_30 AC 3 ms
6,940 KB
testcase_31 AC 5 ms
6,940 KB
testcase_32 AC 30 ms
28,716 KB
testcase_33 AC 45 ms
17,080 KB
testcase_34 AC 74 ms
38,548 KB
testcase_35 AC 48 ms
31,520 KB
testcase_36 AC 50 ms
6,940 KB
testcase_37 AC 27 ms
27,864 KB
testcase_38 AC 20 ms
22,996 KB
testcase_39 AC 118 ms
41,500 KB
testcase_40 AC 52 ms
15,432 KB
testcase_41 AC 51 ms
26,552 KB
testcase_42 AC 58 ms
38,412 KB
testcase_43 AC 89 ms
26,272 KB
testcase_44 AC 81 ms
36,620 KB
testcase_45 AC 108 ms
10,128 KB
testcase_46 AC 118 ms
35,448 KB
testcase_47 AC 37 ms
21,364 KB
testcase_48 AC 52 ms
38,496 KB
testcase_49 AC 46 ms
38,216 KB
testcase_50 AC 23 ms
27,208 KB
testcase_51 AC 111 ms
37,140 KB
testcase_52 AC 91 ms
18,332 KB
testcase_53 AC 46 ms
18,056 KB
testcase_54 AC 84 ms
20,608 KB
testcase_55 AC 27 ms
18,052 KB
testcase_56 AC 21 ms
19,128 KB
testcase_57 AC 41 ms
15,700 KB
testcase_58 AC 96 ms
9,884 KB
testcase_59 AC 18 ms
14,064 KB
testcase_60 AC 57 ms
16,316 KB
testcase_61 AC 35 ms
6,948 KB
testcase_62 AC 73 ms
13,748 KB
testcase_63 AC 56 ms
14,520 KB
testcase_64 AC 21 ms
7,908 KB
testcase_65 AC 37 ms
34,652 KB
testcase_66 AC 43 ms
11,008 KB
testcase_67 AC 68 ms
22,952 KB
testcase_68 AC 82 ms
11,760 KB
testcase_69 AC 28 ms
40,460 KB
testcase_70 AC 23 ms
15,396 KB
testcase_71 AC 30 ms
16,636 KB
testcase_72 AC 70 ms
6,944 KB
testcase_73 AC 34 ms
28,508 KB
testcase_74 AC 82 ms
34,068 KB
testcase_75 AC 48 ms
17,844 KB
testcase_76 AC 72 ms
27,216 KB
testcase_77 AC 63 ms
37,060 KB
testcase_78 AC 101 ms
13,244 KB
testcase_79 AC 84 ms
23,672 KB
testcase_80 AC 78 ms
24,360 KB
testcase_81 AC 55 ms
25,660 KB
testcase_82 AC 279 ms
121,900 KB
testcase_83 AC 385 ms
121,936 KB
testcase_84 AC 394 ms
121,700 KB
testcase_85 AC 388 ms
121,868 KB
testcase_86 AC 196 ms
6,940 KB
testcase_87 AC 277 ms
121,752 KB
testcase_88 AC 290 ms
121,832 KB
testcase_89 AC 292 ms
121,792 KB
testcase_90 AC 277 ms
121,804 KB
testcase_91 AC 276 ms
121,916 KB
testcase_92 AC 399 ms
121,812 KB
testcase_93 AC 405 ms
121,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cassert>
#include <vector>
#include <iostream>
using namespace std;
int B[100100][303] = {};

int main() {
    vector<int> ps;
    vector<bool> b(2001);
    fill(b.begin(), b.end(), true);
    for (int p = 2; p < 2000; p++)
        if (b[p]) {
            ps.push_back(p);
            for (int q = p*p; q < 2000; q += p) b[q] = false;
        }
    assert(ps.size() == 303);

    int n; cin >> n;
    vector<int> zpos;
    for (int i = 0; i < n; i++) {
        int a; cin >> a;
        if (a == 0) { zpos.push_back(i+1); continue; }
        else 
            for (int k = 0; k < ps.size() && a > 1; k++) {
                int p = ps[k], e = 0;
                while (a % p == 0) { e++; a /= p; }
                if (e > 0)
                    for (int j = i+1; j <= n; j += j&-j) B[j][k] += e;
            }
    }
    int q; cin >> q;
    while (q--) {
        int l, r, x; cin >> x >> l >> r;
        auto it = lower_bound(zpos.begin(), zpos.end(), l);
        if (it != zpos.end() && *it <= r) cout << "Yes" << endl;
        else {
            for (int k = 0; k < ps.size(); k++) {
                int p = ps[k], e = 0;
                if (x % p == 0) {
                    for (int j = r; j > 0; j -= j&-j) e += B[j][k];
                    for (int j = l-1; j > 0; j -= j&-j) e -= B[j][k];
                    while (e > 0 && x % p == 0) x /= p, e--;
                }
            }
            cout << (x == 1 ? "Yes" : "NO") << endl;
        }
    }
}
0