結果

問題 No.854 公平なりんご分配
ユーザー risujirohrisujiroh
提出日時 2019-07-26 22:13:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 963 ms / 3,153 ms
コード長 1,753 bytes
コンパイル時間 1,870 ms
コンパイル使用メモリ 182,988 KB
実行使用メモリ 122,476 KB
最終ジャッジ日時 2024-07-02 07:37:07
合計ジャッジ時間 10,127 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 3 ms
6,940 KB
testcase_23 AC 3 ms
6,944 KB
testcase_24 AC 4 ms
6,944 KB
testcase_25 AC 3 ms
6,944 KB
testcase_26 AC 4 ms
6,940 KB
testcase_27 AC 3 ms
6,944 KB
testcase_28 AC 3 ms
6,940 KB
testcase_29 AC 3 ms
6,944 KB
testcase_30 AC 3 ms
6,944 KB
testcase_31 AC 4 ms
6,944 KB
testcase_32 AC 37 ms
28,800 KB
testcase_33 AC 28 ms
16,896 KB
testcase_34 AC 59 ms
38,016 KB
testcase_35 AC 44 ms
30,592 KB
testcase_36 AC 14 ms
6,940 KB
testcase_37 AC 35 ms
27,136 KB
testcase_38 AC 28 ms
22,656 KB
testcase_39 AC 74 ms
40,320 KB
testcase_40 AC 28 ms
14,848 KB
testcase_41 AC 40 ms
25,216 KB
testcase_42 AC 54 ms
37,504 KB
testcase_43 AC 50 ms
26,240 KB
testcase_44 AC 58 ms
35,072 KB
testcase_45 AC 33 ms
9,600 KB
testcase_46 AC 68 ms
34,432 KB
testcase_47 AC 32 ms
20,608 KB
testcase_48 AC 53 ms
36,864 KB
testcase_49 AC 53 ms
37,760 KB
testcase_50 AC 35 ms
26,880 KB
testcase_51 AC 67 ms
36,096 KB
testcase_52 AC 37 ms
17,536 KB
testcase_53 AC 27 ms
17,280 KB
testcase_54 AC 39 ms
20,224 KB
testcase_55 AC 23 ms
17,536 KB
testcase_56 AC 23 ms
18,176 KB
testcase_57 AC 24 ms
15,232 KB
testcase_58 AC 29 ms
8,192 KB
testcase_59 AC 18 ms
13,696 KB
testcase_60 AC 28 ms
15,360 KB
testcase_61 AC 11 ms
6,940 KB
testcase_62 AC 29 ms
13,440 KB
testcase_63 AC 25 ms
14,080 KB
testcase_64 AC 10 ms
7,552 KB
testcase_65 AC 44 ms
33,408 KB
testcase_66 AC 18 ms
10,880 KB
testcase_67 AC 38 ms
22,528 KB
testcase_68 AC 27 ms
11,392 KB
testcase_69 AC 51 ms
40,320 KB
testcase_70 AC 20 ms
15,104 KB
testcase_71 AC 22 ms
16,256 KB
testcase_72 AC 18 ms
6,944 KB
testcase_73 AC 36 ms
27,264 KB
testcase_74 AC 52 ms
32,768 KB
testcase_75 AC 26 ms
16,256 KB
testcase_76 AC 41 ms
26,240 KB
testcase_77 AC 53 ms
36,736 KB
testcase_78 AC 33 ms
12,416 KB
testcase_79 AC 42 ms
23,168 KB
testcase_80 AC 43 ms
24,192 KB
testcase_81 AC 37 ms
25,344 KB
testcase_82 AC 189 ms
122,348 KB
testcase_83 AC 239 ms
122,352 KB
testcase_84 AC 963 ms
122,344 KB
testcase_85 AC 212 ms
122,476 KB
testcase_86 AC 145 ms
122,476 KB
testcase_87 AC 185 ms
122,348 KB
testcase_88 AC 186 ms
122,368 KB
testcase_89 AC 185 ms
122,344 KB
testcase_90 AC 186 ms
122,472 KB
testcase_91 AC 185 ms
122,352 KB
testcase_92 AC 236 ms
122,476 KB
testcase_93 AC 238 ms
122,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using lint = long long;
template<class T = int> using V = vector<T>;
template<class T = int> using VV = V< V<T> >;

V<> sieve(int n) {
  V<bool> b((n + 1) / 3, true);
  V<> res{2, 3};
  for (int p = 5, d = 2; p * p < n; p += d, d = 6 - d) if (b[p / 3]) {
    for (int i = 5 * p, d = 2 * p; i < n; i += d, d = 6 * p - d) b[i / 3] = false;
  }
  for (int p = 5, d = 2; p < n; p += d, d = 6 - d) if(b[p / 3]) res.push_back(p);
  while (!res.empty() and res.back() >= n) res.pop_back();
  return res;
}

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

int main() {
  cin.tie(nullptr); ios::sync_with_stdio(false);
  int n; cin >> n;
  V<> p2i(2000);
  {
    auto ps = sieve(2000);
    for (int i = 0; i < 303; ++i) {
      p2i[ps[i]] = i;
    }
  }
  VV<> a(303, V<>(n + 1));
  V<> z(n + 1);
  for (int i = 0; i < n; ++i) {
    int x; cin >> x;
    if (!x) {
      z[i] = 1;
      continue;
    }
    for (const auto& e : factorize(x)) {
      a[p2i[e.first]][i] = e.second;
    }
  }
  for (auto&& v : a) {
    for (int i = n - 1; i >= 0; --i) v[i] += v[i + 1];
  }
  for (int i = n - 1; i >= 0; --i) z[i] += z[i + 1];

  int q; cin >> q;
  while (q--) {
    int p, l, r; cin >> p >> l >> r, --l;
    if (z[l] - z[r]) cout << "Yes" << '\n';
    else {
      bool ok = true;
      for (const auto& e : factorize(p)) {
        if (e.first > 2000) {
          ok = false;
          break;
        }
        int i = p2i[e.first];
        if (e.second > a[i][l] - a[i][r]) {
          ok = false;
          break;
        }
      }
      cout << (ok ? "Yes" : "NO") << '\n';
    }
  }
}
0