結果

問題 No.854 公平なりんご分配
ユーザー ei1333333ei1333333
提出日時 2019-07-26 22:17:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 4,119 bytes
コンパイル時間 2,290 ms
コンパイル使用メモリ 214,292 KB
実行使用メモリ 130,588 KB
最終ジャッジ日時 2024-07-02 07:39:54
合計ジャッジ時間 15,537 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
13,884 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 3 ms
6,940 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 3 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 3 ms
6,944 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 3 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 3 ms
6,944 KB
testcase_22 AC 4 ms
6,944 KB
testcase_23 AC 4 ms
6,948 KB
testcase_24 AC 6 ms
6,940 KB
testcase_25 AC 3 ms
6,940 KB
testcase_26 AC 6 ms
6,940 KB
testcase_27 AC 5 ms
6,940 KB
testcase_28 AC 5 ms
6,940 KB
testcase_29 AC 3 ms
6,944 KB
testcase_30 AC 3 ms
6,940 KB
testcase_31 AC 6 ms
6,940 KB
testcase_32 AC 46 ms
28,800 KB
testcase_33 AC 47 ms
16,896 KB
testcase_34 AC 87 ms
38,272 KB
testcase_35 AC 62 ms
30,976 KB
testcase_36 AC 39 ms
6,940 KB
testcase_37 AC 43 ms
27,136 KB
testcase_38 AC 35 ms
22,656 KB
testcase_39 AC 127 ms
40,576 KB
testcase_40 AC 54 ms
14,976 KB
testcase_41 AC 61 ms
25,344 KB
testcase_42 AC 77 ms
37,760 KB
testcase_43 AC 91 ms
26,496 KB
testcase_44 AC 94 ms
35,200 KB
testcase_45 AC 89 ms
9,600 KB
testcase_46 AC 118 ms
34,816 KB
testcase_47 AC 47 ms
20,992 KB
testcase_48 AC 73 ms
37,248 KB
testcase_49 AC 69 ms
38,016 KB
testcase_50 AC 41 ms
27,008 KB
testcase_51 AC 118 ms
36,352 KB
testcase_52 AC 86 ms
17,664 KB
testcase_53 AC 50 ms
17,408 KB
testcase_54 AC 88 ms
20,224 KB
testcase_55 AC 35 ms
17,536 KB
testcase_56 AC 31 ms
18,304 KB
testcase_57 AC 46 ms
15,360 KB
testcase_58 AC 85 ms
8,192 KB
testcase_59 AC 27 ms
13,824 KB
testcase_60 AC 64 ms
15,232 KB
testcase_61 AC 30 ms
6,944 KB
testcase_62 AC 67 ms
13,440 KB
testcase_63 AC 54 ms
14,080 KB
testcase_64 AC 20 ms
7,296 KB
testcase_65 AC 58 ms
33,536 KB
testcase_66 AC 43 ms
10,880 KB
testcase_67 AC 70 ms
22,656 KB
testcase_68 AC 69 ms
11,392 KB
testcase_69 AC 58 ms
40,576 KB
testcase_70 AC 29 ms
15,104 KB
testcase_71 AC 35 ms
16,256 KB
testcase_72 AC 55 ms
6,944 KB
testcase_73 AC 48 ms
27,520 KB
testcase_74 AC 91 ms
32,896 KB
testcase_75 AC 47 ms
16,384 KB
testcase_76 AC 74 ms
26,240 KB
testcase_77 AC 80 ms
37,120 KB
testcase_78 AC 85 ms
12,416 KB
testcase_79 AC 88 ms
23,296 KB
testcase_80 AC 80 ms
24,320 KB
testcase_81 AC 62 ms
25,216 KB
testcase_82 AC 331 ms
123,520 KB
testcase_83 AC 2,439 ms
123,520 KB
testcase_84 TLE -
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 int64 = long long;
const int mod = 1e9 + 7;

const int64 infll = (1LL << 62) - 1;
const int inf = (1 << 30) - 1;

struct IoSetup {
  IoSetup() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    cout << fixed << setprecision(10);
    cerr << fixed << setprecision(10);
  }
} iosetup;


template< typename T1, typename T2 >
ostream &operator<<(ostream &os, const pair< T1, T2 > &p) {
  os << p.first << " " << p.second;
  return os;
}

template< typename T1, typename T2 >
istream &operator>>(istream &is, pair< T1, T2 > &p) {
  is >> p.first >> p.second;
  return is;
}

template< typename T >
ostream &operator<<(ostream &os, const vector< T > &v) {
  for(int i = 0; i < (int) v.size(); i++) {
    os << v[i] << (i + 1 != v.size() ? " " : "");
  }
  return os;
}

template< typename T >
istream &operator>>(istream &is, vector< T > &v) {
  for(T &in : v) is >> in;
  return is;
}

template< typename T1, typename T2 >
inline bool chmax(T1 &a, T2 b) { return a < b && (a = b, true); }

template< typename T1, typename T2 >
inline bool chmin(T1 &a, T2 b) { return a > b && (a = b, true); }

template< typename T = int64 >
vector< T > make_v(size_t a) {
  return vector< T >(a);
}

template< typename T, typename... Ts >
auto make_v(size_t a, Ts... ts) {
  return vector< decltype(make_v< T >(ts...)) >(a, make_v< T >(ts...));
}

template< typename T, typename V >
typename enable_if< is_class< T >::value == 0 >::type fill_v(T &t, const V &v) {
  t = v;
}

template< typename T, typename V >
typename enable_if< is_class< T >::value != 0 >::type fill_v(T &t, const V &v) {
  for(auto &e : t) fill_v(e, v);
}

template< typename F >
struct FixPoint : F {
  FixPoint(F &&f) : F(forward< F >(f)) {}

  template< typename... Args >
  decltype(auto) operator()(Args &&... args) const {
    return F::operator()(*this, forward< Args >(args)...);
  }
};

template< typename F >
inline decltype(auto) MFP(F &&f) {
  return FixPoint< F >{forward< F >(f)};
}

std::vector< int > eratosthenes_sieve(int n) {
  std::vector< int > ps(n + 1);
  std::iota(ps.begin() + 2, ps.end(), 2);
  for(int i = 2; i * i <= n; ++i)
    if(ps[i])
      for(int j = i * i; j <= n; j += i) ps[j] = 0;
  return ps;
}

std::vector< int > make_primes(int n) {
  std::vector< int > ps = eratosthenes_sieve(n);
  ps.erase(std::remove(ps.begin(), ps.end(), 0), ps.end());
  return ps;
}

std::pair< std::vector< int64 >, std::vector< int64 > > prime_factor_decomp_fast(int64 n) {
  static const auto ps = make_primes(32000);  // sqrt(10^9)
  std::vector< int64 > p, e;
  int64 m = n;
  for(auto &i : ps) {
    if(i * i > n) break;
    if(m % i != 0) continue;
    int c = 0;
    while(m % i == 0) c++, m /= i;
    p.push_back(i);
    e.push_back(c);
  }
  if(m > 1) {
    p.push_back(m);
    e.push_back(1);
  }
  return std::make_pair(p, e);
}


int main() {
  int N;
  cin >> N;
  vector< int64 > A(N);
  cin >> A;

  vector< int > zero(N + 1);
  auto ret = make_primes(2001);
  vector< int > id(2020, -1);
  int ptr = 0;
  for(auto &p : ret) id[p] = ptr++;
  vector< vector< int > > sum(ret.size(), vector< int >(N + 1));

  for(int i = 0; i < N; i++) {
    if(A[i] == 0) {
      zero[i + 1]++;
    } else {
      auto p = prime_factor_decomp_fast(A[i]);
      for(int j = 0; j < p.first.size(); j++) {
        sum[id[p.first[j]]][i + 1] += p.second[j];
      }
    }
  }
  for(int i = 1; i <= N; i++) {
    zero[i] += zero[i - 1];
  }
  for(auto &vs : sum) {
    for(int i = 1; i < vs.size(); i++) vs[i] += vs[i - 1];
  }


  int Q;
  cin >> Q;
  for(int i = 0; i < Q; i++) {
    int p, l, r;
    cin >> p >> l >> r;
    --l;
    if(p == 1 || zero[r] - zero[l]) {
      cout << "Yes" << endl;
      continue;
    }
    auto tap = prime_factor_decomp_fast(p);
    bool flag = true;
    for(int j = tap.first.size() - 1; j >= 0 && flag; j--) {
      if(tap.first[j] > 2000) {
        flag = false;
      } else {
        auto &vs = sum[id[tap.first[j]]];
        flag &= vs[r] - vs[l] >= tap.second[j];
      }
    }
    if(flag) cout << "Yes" << endl;
    else cout << "NO" << endl;
  }
}

0