結果

問題 No.854 公平なりんご分配
ユーザー ei1333333ei1333333
提出日時 2019-07-26 22:17:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 4,119 bytes
コンパイル時間 2,507 ms
コンパイル使用メモリ 211,128 KB
実行使用メモリ 128,000 KB
最終ジャッジ日時 2023-09-15 01:58:29
合計ジャッジ時間 15,647 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
8,888 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,384 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 2 ms
4,388 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 2 ms
4,388 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 2 ms
4,384 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 2 ms
4,384 KB
testcase_13 AC 3 ms
4,384 KB
testcase_14 AC 2 ms
4,384 KB
testcase_15 AC 2 ms
4,384 KB
testcase_16 AC 2 ms
4,384 KB
testcase_17 AC 2 ms
4,380 KB
testcase_18 AC 2 ms
4,380 KB
testcase_19 AC 2 ms
4,384 KB
testcase_20 AC 2 ms
4,384 KB
testcase_21 AC 2 ms
4,384 KB
testcase_22 AC 4 ms
4,380 KB
testcase_23 AC 3 ms
4,380 KB
testcase_24 AC 5 ms
4,380 KB
testcase_25 AC 3 ms
4,384 KB
testcase_26 AC 5 ms
4,380 KB
testcase_27 AC 4 ms
4,384 KB
testcase_28 AC 4 ms
4,384 KB
testcase_29 AC 3 ms
4,504 KB
testcase_30 AC 4 ms
4,384 KB
testcase_31 AC 5 ms
4,380 KB
testcase_32 AC 44 ms
28,616 KB
testcase_33 AC 46 ms
16,688 KB
testcase_34 AC 84 ms
38,076 KB
testcase_35 AC 60 ms
30,764 KB
testcase_36 AC 39 ms
4,856 KB
testcase_37 AC 42 ms
27,032 KB
testcase_38 AC 34 ms
22,540 KB
testcase_39 AC 127 ms
40,268 KB
testcase_40 AC 52 ms
14,896 KB
testcase_41 AC 58 ms
25,228 KB
testcase_42 AC 76 ms
37,584 KB
testcase_43 AC 86 ms
26,440 KB
testcase_44 AC 93 ms
35,096 KB
testcase_45 AC 88 ms
9,384 KB
testcase_46 AC 117 ms
34,764 KB
testcase_47 AC 47 ms
20,732 KB
testcase_48 AC 70 ms
37,172 KB
testcase_49 AC 67 ms
37,852 KB
testcase_50 AC 39 ms
26,848 KB
testcase_51 AC 117 ms
36,236 KB
testcase_52 AC 82 ms
17,520 KB
testcase_53 AC 47 ms
17,268 KB
testcase_54 AC 82 ms
20,192 KB
testcase_55 AC 33 ms
17,336 KB
testcase_56 AC 30 ms
18,056 KB
testcase_57 AC 44 ms
15,176 KB
testcase_58 AC 79 ms
8,020 KB
testcase_59 AC 24 ms
13,524 KB
testcase_60 AC 57 ms
15,192 KB
testcase_61 AC 30 ms
5,384 KB
testcase_62 AC 65 ms
13,272 KB
testcase_63 AC 53 ms
13,820 KB
testcase_64 AC 19 ms
7,228 KB
testcase_65 AC 56 ms
33,472 KB
testcase_66 AC 41 ms
10,688 KB
testcase_67 AC 69 ms
22,632 KB
testcase_68 AC 68 ms
11,192 KB
testcase_69 AC 55 ms
40,588 KB
testcase_70 AC 28 ms
14,872 KB
testcase_71 AC 33 ms
15,904 KB
testcase_72 AC 53 ms
4,812 KB
testcase_73 AC 46 ms
27,424 KB
testcase_74 AC 87 ms
32,912 KB
testcase_75 AC 45 ms
16,260 KB
testcase_76 AC 76 ms
26,244 KB
testcase_77 AC 78 ms
36,920 KB
testcase_78 AC 86 ms
12,368 KB
testcase_79 AC 84 ms
23,072 KB
testcase_80 AC 78 ms
24,236 KB
testcase_81 AC 61 ms
25,324 KB
testcase_82 AC 317 ms
123,396 KB
testcase_83 AC 2,441 ms
123,384 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