結果

問題 No.854 公平なりんご分配
ユーザー kk
提出日時 2021-03-20 19:46:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,266 bytes
コンパイル時間 2,629 ms
コンパイル使用メモリ 219,024 KB
実行使用メモリ 247,844 KB
最終ジャッジ日時 2024-11-21 09:14:34
合計ジャッジ時間 234,418 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
13,632 KB
testcase_02 AC 2 ms
10,496 KB
testcase_03 AC 2 ms
54,528 KB
testcase_04 AC 2 ms
10,496 KB
testcase_05 AC 2 ms
71,552 KB
testcase_06 AC 2 ms
10,496 KB
testcase_07 AC 2 ms
71,552 KB
testcase_08 AC 2 ms
10,496 KB
testcase_09 AC 2 ms
73,984 KB
testcase_10 AC 2 ms
10,496 KB
testcase_11 AC 2 ms
36,864 KB
testcase_12 AC 4 ms
10,496 KB
testcase_13 AC 4 ms
36,224 KB
testcase_14 AC 2 ms
10,496 KB
testcase_15 AC 3 ms
41,984 KB
testcase_16 AC 3 ms
10,496 KB
testcase_17 AC 3 ms
36,352 KB
testcase_18 AC 3 ms
10,496 KB
testcase_19 AC 3 ms
37,760 KB
testcase_20 AC 3 ms
10,496 KB
testcase_21 AC 3 ms
32,256 KB
testcase_22 AC 21 ms
10,496 KB
testcase_23 AC 22 ms
13,644 KB
testcase_24 AC 50 ms
10,624 KB
testcase_25 AC 17 ms
29,184 KB
testcase_26 AC 53 ms
10,880 KB
testcase_27 AC 36 ms
32,512 KB
testcase_28 AC 20 ms
10,496 KB
testcase_29 AC 9 ms
12,672 KB
testcase_30 AC 18 ms
10,496 KB
testcase_31 AC 48 ms
28,288 KB
testcase_32 AC 1,564 ms
59,392 KB
testcase_33 AC 1,725 ms
54,528 KB
testcase_34 TLE -
testcase_35 AC 2,504 ms
64,800 KB
testcase_36 AC 746 ms
11,648 KB
testcase_37 AC 1,510 ms
114,304 KB
testcase_38 AC 901 ms
46,720 KB
testcase_39 TLE -
testcase_40 AC 2,000 ms
31,616 KB
testcase_41 AC 2,496 ms
88,192 KB
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 AC 1,696 ms
64,128 KB
testcase_48 AC 2,914 ms
76,416 KB
testcase_49 AC 2,678 ms
101,120 KB
testcase_50 AC 1,309 ms
55,808 KB
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 TLE -
testcase_63 TLE -
testcase_64 TLE -
testcase_65 TLE -
testcase_66 TLE -
testcase_67 TLE -
testcase_68 TLE -
testcase_69 TLE -
testcase_70 TLE -
testcase_71 TLE -
testcase_72 TLE -
testcase_73 TLE -
testcase_74 TLE -
testcase_75 TLE -
testcase_76 TLE -
testcase_77 TLE -
testcase_78 TLE -
testcase_79 TLE -
testcase_80 TLE -
testcase_81 TLE -
testcase_82 TLE -
testcase_83 TLE -
testcase_84 TLE -
testcase_85 TLE -
testcase_86 TLE -
testcase_87 TLE -
testcase_88 TLE -
testcase_89 TLE -
testcase_90 TLE -
testcase_91 TLE -
testcase_92 TLE -
testcase_93 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

template<typename T>
class SegTree {
  int n;
  vector<T> seg;
  T nil;
  function<T(T,T)> binop;
  
  void update(int k, int l, int r, int p, T x) {
    if (p < l || r <= p) return;
    if (r - l == 1) seg[k] = x;
    else {
      update(2*k+1, l, (l+r)/2, p, x);
      update(2*k+2, (l+r)/2, r, p, x);
      seg[k] = binop(seg[2*k+1], seg[2*k+2]);
    }
  }
  T query(int k, int l, int r, int a, int b) {
    if (b <= l || r <= a) return nil;
    if (a <= l && r <= b) return seg[k];
    return binop(query(2*k+1, l, (l+r)/2, a, b), query(2*k+2, (l+r)/2, r, a, b));
  }
public:
  SegTree(int n, T nil, function<T(T, T)> binop): n(n), seg(4*n), nil(nil), binop(binop) {}
  void init() {
    for (int i = 0; i < 4*n; i++)
      seg[i] = nil;
  }
  // update p-th value to x
  void update(int p, T x) {
    update(0, 0, n, p, x);
  }
  // query for range [l, r)
  T query(int l, int r) {
    return query(0, 0, n, l, r);
  }
};

bool isprime(long long n) {
  if (n < 2) return false;
  if (n == 2) return true;
  if (n % 2 == 0) return false;
  
  for (long long i = 3; i * i <= n; i += 2)
    if (n % i == 0)
      return false;
  
  return true;
}

int main() {
  ios_base::sync_with_stdio(0);
  cin.tie(0);

  int n;
  cin >> n;

  vector<int> primes;
  vector<SegTree<short> > trees;

  for (int i = 1; i <= 2000; i++) {
    if (isprime(i)) {
      primes.push_back(i);
      auto plus = [](short a, short b) { return min(100, a + b); };
      trees.push_back(SegTree<short>(n, 0, plus));      
    }
  }

  for (int i = 0; i < n; i++) {
    int a;
    cin >> a;
    for (int j = 0; j < primes.size(); j++) {
      int c = 0;
      while (a % primes[j] == 0) {
        a /= primes[j];
        ++c;
      }
      trees[j].update(i, c);
    }
  }

  int q;
  cin >> q;
  for (int i = 0; i < q; i++) {
    int x, l, r;
    cin >> x >> l >> r;

    bool ck = true;
    for (int j = 0; j < primes.size(); j++) {
      int c = 0;
      while (x % primes[j] == 0) {
        ++c;
        x /= primes[j];
      }
      if (c > trees[j].query(l-1, r)) {
        ck = false;
        break;
      }
    }
    ck &= x == 1;    
    if (ck)
      cout << "Yes" << endl;
    else
      cout << "NO" << endl;
  }
  

  return 0;
}
0