結果

問題 No.854 公平なりんご分配
ユーザー 👑 jupirojupiro
提出日時 2020-01-26 20:25:05
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 3,288 bytes
コンパイル時間 1,264 ms
コンパイル使用メモリ 121,352 KB
実行使用メモリ 368,060 KB
最終ジャッジ日時 2023-10-12 12:34:53
合計ジャッジ時間 33,829 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 165 ms
52,204 KB
testcase_01 AC 163 ms
52,208 KB
testcase_02 AC 166 ms
52,188 KB
testcase_03 AC 164 ms
52,316 KB
testcase_04 AC 166 ms
52,508 KB
testcase_05 AC 167 ms
53,548 KB
testcase_06 AC 166 ms
52,884 KB
testcase_07 AC 162 ms
52,320 KB
testcase_08 AC 166 ms
52,100 KB
testcase_09 AC 167 ms
53,300 KB
testcase_10 AC 177 ms
53,332 KB
testcase_11 AC 166 ms
52,236 KB
testcase_12 AC 167 ms
53,048 KB
testcase_13 AC 164 ms
53,864 KB
testcase_14 AC 166 ms
52,232 KB
testcase_15 AC 161 ms
52,576 KB
testcase_16 AC 167 ms
52,356 KB
testcase_17 AC 158 ms
52,204 KB
testcase_18 AC 161 ms
53,672 KB
testcase_19 AC 158 ms
52,312 KB
testcase_20 AC 163 ms
53,368 KB
testcase_21 AC 166 ms
52,236 KB
testcase_22 AC 176 ms
52,804 KB
testcase_23 AC 170 ms
52,496 KB
testcase_24 AC 170 ms
52,248 KB
testcase_25 AC 171 ms
52,508 KB
testcase_26 AC 174 ms
53,036 KB
testcase_27 AC 180 ms
52,280 KB
testcase_28 AC 171 ms
51,976 KB
testcase_29 AC 173 ms
53,788 KB
testcase_30 AC 180 ms
53,312 KB
testcase_31 AC 176 ms
52,212 KB
testcase_32 AC 250 ms
115,932 KB
testcase_33 AC 250 ms
84,420 KB
testcase_34 AC 321 ms
141,604 KB
testcase_35 AC 280 ms
121,720 KB
testcase_36 AC 232 ms
52,724 KB
testcase_37 AC 248 ms
111,696 KB
testcase_38 AC 235 ms
99,740 KB
testcase_39 AC 382 ms
147,332 KB
testcase_40 AC 254 ms
79,260 KB
testcase_41 AC 277 ms
106,904 KB
testcase_42 AC 316 ms
139,960 KB
testcase_43 AC 324 ms
109,752 KB
testcase_44 AC 334 ms
133,132 KB
testcase_45 AC 320 ms
64,520 KB
testcase_46 AC 364 ms
131,928 KB
testcase_47 AC 245 ms
94,808 KB
testcase_48 AC 294 ms
138,440 KB
testcase_49 AC 285 ms
140,580 KB
testcase_50 AC 235 ms
111,272 KB
testcase_51 AC 362 ms
136,324 KB
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 WA -
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 WA -
testcase_70 WA -
testcase_71 WA -
testcase_72 WA -
testcase_73 WA -
testcase_74 WA -
testcase_75 WA -
testcase_76 WA -
testcase_77 WA -
testcase_78 WA -
testcase_79 WA -
testcase_80 WA -
testcase_81 WA -
testcase_82 MLE -
testcase_83 MLE -
testcase_84 MLE -
testcase_85 MLE -
testcase_86 MLE -
testcase_87 MLE -
testcase_88 MLE -
testcase_89 MLE -
testcase_90 MLE -
testcase_91 MLE -
testcase_92 MLE -
testcase_93 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <iostream>
#include <string>
#include <sstream>
#include <stack>
#include <algorithm>
#include <cmath>
#include <queue>
#include <map>
#include <set>
#include <cstdlib>
#include <bitset>
#include <tuple>
#include <assert.h>
#include <deque>
#include <bitset>
#include <iomanip>
#include <limits>
#include <chrono>
#include <random>
#include <array>
#include <unordered_map>
#include <functional>
#include <complex>

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

const long long MAX = 5100000;
const long long INF = 1LL << 60;
const long long mod = 1000000007LL;
//const long long mod = 998244353LL;

using namespace std;
typedef unsigned long long ull;
typedef long long ll;

bool IsPrime[MAX];
ll MinFactor[MAX]; vector<ll> preprocess(ll n = MAX) {
    vector<ll> res;
    for (ll i = 0; i < n; ++i) IsPrime[i] = true, MinFactor[i] = -1;
    IsPrime[0] = false; IsPrime[1] = false;
    MinFactor[0] = 0; MinFactor[1] = 1;
    for (ll i = 2; i < n; ++i) {
        if (IsPrime[i]) {
            MinFactor[i] = i;
            res.push_back(i);
            for (ll j = i * 2; j < n; j += i) {
                IsPrime[j] = false;
                if (MinFactor[j] == -1) MinFactor[j] = i;
            }
        }
    }
    return res;
}

vector<pair<ll, ll> > fast_prime_factor(ll n) {
    vector<pair<ll, ll> > res;
    while (n != 1) {
        ll prime = MinFactor[n];
        ll exp = 0;
        while (MinFactor[n] == prime) {
            ++exp;
            n /= prime;
        }
        res.push_back(make_pair(prime, exp));
    }
    return res;
}
ll cnv[2001];
int main()
{
	/*
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	*/
    preprocess();
    vector<ll> pr;
    {
        ll idx = 0;
        for (ll i = 2; i <= 2000; i++) {
            if (IsPrime[i]) {
                pr.push_back(i);
                cnv[i] = idx++;
            }
        }
    }
    ll n; scanf("%lld", &n);
    vector<ll> a(n); for (ll i = 0; i < n; i++) scanf("%lld", &a[i]);
    vector<vector<ll>> psum(n + 1, vector<ll>(pr.size() + 100));
    vector<ll> z(n + 1);
    for (ll i = 0; i < n; i++) {
        if (a[i] == 0) z[i + 1] = z[i] + 1;
        else {
            if (a[i] != 1) {
                vector<pair<ll, ll>> vp = fast_prime_factor(a[i]);
                for (auto p : vp) {
                    psum[i + 1][cnv[p.first]] += p.second;
                }
            }
            for (ll j = 0; j < psum[i].size(); j++) {
                psum[i + 1][j] += psum[i][j];
            }
        }
    }
    ll Q; scanf("%lld", &Q);
    while (Q--) {
        ll x, l, r; scanf("%lld %lld %lld", &x, &l, &r);
        if (z[r] - z[l - 1] > 0) puts("Yes");
        else {

            if (x == 1) puts("Yes");
            else {
                for (ll e: pr) {
                    if (x % e != 0) continue;
                    ll cnt = psum[r][cnv[e]] - psum[l - 1][cnv[e]];
                    for (ll i = 0; i < cnt && (x % e == 0); i++) {
                        x /= e;
                    }
                }
                if (x == 1) puts("Yes");
                else puts("NO");
            }
        }
    }
	return 0;
}
0