結果

問題 No.854 公平なりんご分配
ユーザー ei1333333ei1333333
提出日時 2019-07-26 22:09:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 3,281 bytes
コンパイル時間 2,197 ms
コンパイル使用メモリ 217,608 KB
実行使用メモリ 130,976 KB
最終ジャッジ日時 2024-07-02 07:33:05
合計ジャッジ時間 42,696 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
13,764 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 3 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 3 ms
6,940 KB
testcase_19 AC 3 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 6 ms
6,944 KB
testcase_23 AC 5 ms
6,944 KB
testcase_24 AC 9 ms
6,940 KB
testcase_25 AC 4 ms
6,940 KB
testcase_26 AC 10 ms
6,940 KB
testcase_27 AC 7 ms
6,940 KB
testcase_28 AC 6 ms
6,944 KB
testcase_29 AC 3 ms
6,944 KB
testcase_30 AC 5 ms
6,944 KB
testcase_31 AC 9 ms
6,940 KB
testcase_32 AC 204 ms
29,312 KB
testcase_33 AC 431 ms
17,536 KB
testcase_34 AC 860 ms
38,784 KB
testcase_35 AC 516 ms
31,360 KB
testcase_36 AC 149 ms
6,940 KB
testcase_37 AC 200 ms
27,648 KB
testcase_38 AC 110 ms
23,296 KB
testcase_39 AC 1,747 ms
40,832 KB
testcase_40 AC 512 ms
15,616 KB
testcase_41 AC 596 ms
25,984 KB
testcase_42 AC 671 ms
38,272 KB
testcase_43 AC 1,215 ms
27,008 KB
testcase_44 AC 1,168 ms
35,712 KB
testcase_45 AC 693 ms
9,856 KB
testcase_46 AC 1,753 ms
35,200 KB
testcase_47 AC 415 ms
21,376 KB
testcase_48 AC 575 ms
37,504 KB
testcase_49 AC 469 ms
38,400 KB
testcase_50 AC 141 ms
27,520 KB
testcase_51 AC 1,697 ms
36,864 KB
testcase_52 AC 1,292 ms
18,304 KB
testcase_53 AC 571 ms
18,048 KB
testcase_54 AC 1,324 ms
20,992 KB
testcase_55 AC 286 ms
18,176 KB
testcase_56 AC 178 ms
18,816 KB
testcase_57 AC 493 ms
16,000 KB
testcase_58 AC 556 ms
8,448 KB
testcase_59 AC 161 ms
14,464 KB
testcase_60 AC 697 ms
15,744 KB
testcase_61 AC 150 ms
6,940 KB
testcase_62 AC 701 ms
13,952 KB
testcase_63 AC 658 ms
14,720 KB
testcase_64 AC 108 ms
7,680 KB
testcase_65 AC 384 ms
34,176 KB
testcase_66 AC 340 ms
11,264 KB
testcase_67 AC 1,036 ms
23,296 KB
testcase_68 AC 736 ms
12,032 KB
testcase_69 AC 127 ms
41,216 KB
testcase_70 AC 221 ms
15,616 KB
testcase_71 AC 279 ms
16,896 KB
testcase_72 AC 223 ms
6,940 KB
testcase_73 AC 386 ms
28,032 KB
testcase_74 AC 1,437 ms
33,536 KB
testcase_75 AC 533 ms
16,896 KB
testcase_76 AC 1,261 ms
27,008 KB
testcase_77 AC 1,046 ms
37,632 KB
testcase_78 AC 1,025 ms
13,056 KB
testcase_79 AC 1,315 ms
23,808 KB
testcase_80 AC 1,179 ms
24,960 KB
testcase_81 AC 852 ms
25,984 KB
testcase_82 TLE -
testcase_83 -- -
testcase_84 -- -
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)};
}

map< int64_t, int > prime_factor(int64_t n) {
  map< int64_t, int > ret;
  for(int64_t i = 2; i * i <= n; i++) {
    while(n % i == 0) {
      ret[i]++;
      n /= i;
    }
  }
  if(n != 1) ret[n] = 1;
  return (ret);
}

int64_t mod_pow(int64_t x, int64_t n, int64_t mod) {
  int64_t ret = 1;
  while(n > 0 && ret) {
    if(n & 1) (ret *= x) %= mod;
    (x *= x) %= mod;
    n >>= 1;
  }
  return ret;
}

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

  vector< int > id(202020, -1);
  int ptr = 0;
  vector< vector< int > > sum;
  vector< int > uku;

  for(int i = 0; i < N; i++) {
    auto p = prime_factor(A[i]);
    for(auto &t : p) {
      if(id[t.first] == -1) {
        id[t.first] = ptr++;
        uku.emplace_back(t.first);
        sum.emplace_back(A.size() + 1);
      }
      sum[id[t.first]][i + 1] += t.second;
    }
  }
  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;
    int64 ret = 1;
    for(int j = 0; j < sum.size(); j++) {
      ret *= mod_pow(uku[j], sum[j][r] - sum[j][l], p);
      ret %= p;
    }
    if(ret % p == 0) cout << "Yes" << endl;
    else cout << "NO" << endl;
  }
}
0