結果

問題 No.854 公平なりんご分配
ユーザー 0w10w1
提出日時 2019-07-31 20:17:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 409 ms / 3,153 ms
コード長 1,606 bytes
コンパイル時間 2,536 ms
コンパイル使用メモリ 211,292 KB
実行使用メモリ 126,464 KB
最終ジャッジ日時 2024-07-05 06:56:36
合計ジャッジ時間 11,554 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 1 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 3 ms
6,944 KB
testcase_23 AC 3 ms
6,940 KB
testcase_24 AC 5 ms
6,944 KB
testcase_25 AC 3 ms
6,940 KB
testcase_26 AC 5 ms
6,944 KB
testcase_27 AC 4 ms
6,944 KB
testcase_28 AC 3 ms
6,944 KB
testcase_29 AC 3 ms
6,940 KB
testcase_30 AC 3 ms
6,944 KB
testcase_31 AC 5 ms
6,944 KB
testcase_32 AC 35 ms
29,312 KB
testcase_33 AC 44 ms
17,024 KB
testcase_34 AC 72 ms
39,168 KB
testcase_35 AC 51 ms
31,360 KB
testcase_36 AC 39 ms
6,940 KB
testcase_37 AC 32 ms
27,648 KB
testcase_38 AC 24 ms
22,912 KB
testcase_39 AC 116 ms
41,344 KB
testcase_40 AC 51 ms
15,104 KB
testcase_41 AC 51 ms
25,856 KB
testcase_42 AC 61 ms
38,528 KB
testcase_43 AC 83 ms
26,880 KB
testcase_44 AC 84 ms
35,968 KB
testcase_45 AC 92 ms
9,344 KB
testcase_46 AC 113 ms
35,328 KB
testcase_47 AC 41 ms
21,248 KB
testcase_48 AC 58 ms
38,016 KB
testcase_49 AC 53 ms
38,784 KB
testcase_50 AC 29 ms
27,392 KB
testcase_51 AC 112 ms
36,992 KB
testcase_52 AC 80 ms
17,792 KB
testcase_53 AC 42 ms
17,664 KB
testcase_54 AC 79 ms
20,736 KB
testcase_55 AC 28 ms
17,664 KB
testcase_56 AC 23 ms
18,560 KB
testcase_57 AC 38 ms
15,488 KB
testcase_58 AC 84 ms
8,192 KB
testcase_59 AC 20 ms
13,824 KB
testcase_60 AC 54 ms
15,616 KB
testcase_61 AC 29 ms
6,940 KB
testcase_62 AC 67 ms
13,568 KB
testcase_63 AC 51 ms
14,208 KB
testcase_64 AC 19 ms
7,424 KB
testcase_65 AC 44 ms
34,048 KB
testcase_66 AC 39 ms
10,880 KB
testcase_67 AC 64 ms
23,040 KB
testcase_68 AC 68 ms
11,648 KB
testcase_69 AC 40 ms
41,472 KB
testcase_70 AC 23 ms
15,360 KB
testcase_71 AC 27 ms
16,384 KB
testcase_72 AC 54 ms
6,944 KB
testcase_73 AC 36 ms
28,032 KB
testcase_74 AC 77 ms
33,536 KB
testcase_75 AC 41 ms
16,512 KB
testcase_76 AC 62 ms
26,752 KB
testcase_77 AC 64 ms
37,888 KB
testcase_78 AC 82 ms
12,416 KB
testcase_79 AC 78 ms
23,680 KB
testcase_80 AC 72 ms
24,832 KB
testcase_81 AC 53 ms
25,856 KB
testcase_82 AC 270 ms
126,212 KB
testcase_83 AC 374 ms
126,336 KB
testcase_84 AC 376 ms
126,336 KB
testcase_85 AC 326 ms
74,624 KB
testcase_86 AC 159 ms
6,940 KB
testcase_87 AC 277 ms
126,208 KB
testcase_88 AC 270 ms
126,464 KB
testcase_89 AC 277 ms
126,336 KB
testcase_90 AC 274 ms
126,208 KB
testcase_91 AC 275 ms
126,336 KB
testcase_92 AC 406 ms
126,336 KB
testcase_93 AC 409 ms
126,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
  ios::sync_with_stdio(false);

  int N;
  cin >> N;

  vector<int> A(N);
  for (int i = 0; i < N; ++i) {
    cin >> A[i];
  }

  int maxa = *max_element(A.begin(), A.end());

  vector<int> zps; // zero positions
  for (int i = 0; i < N; ++i) {
    if (A[i] == 0) zps.push_back(i);
  }

  vector<int> apf; // any prime factor
  vector<int> prs;
  vector<int> pfx; {
    apf.resize(maxa + 1);
    iota(apf.begin(), apf.end(), 0);
    for (int i = 2; i < maxa + 1; ++i) {
      if (apf[i] != i) continue; // not prime
      prs.push_back(i);
      for (int j = i; j < maxa + 1; j += i) {
        apf[j] = i;
      }
    }
    pfx.resize(maxa + 1);
    for (int i = 0; i < prs.size(); ++i) {
      pfx[prs[i]] = i;
    }
  }

  vector<vector<int>> ap(N + 1, vector<int>(prs.size())); {
    for (int i = 0; i < N; ++i) {
      ap[i + 1] = ap[i];
      int v = A[i];
      while (1 < v) {
        ++ap[i + 1][pfx[apf[v]]];
        v /= apf[v];
      }
    }
  }

  int Q;
  cin >> Q;

  for (int qi = 0; qi < Q; ++qi) {
    int P, L, R;
    cin >> P >> L >> R;
    int zp = lower_bound(zps.begin(), zps.end(), L - 1) - zps.begin();
    if (zp < zps.size() && zps[zp] < R) {
      cout << "Yes" << endl;
    } else {
      bool ok = true;
      for (int p : prs) {
        if (P % p) continue;
        int c = 0;
        for (; P % p == 0; ++c) P /= p;
        if (ap[R][pfx[p]] - ap[L - 1][pfx[p]] < c) {
          ok = false;
          break;
        }
      }
      ok &= P == 1;
      cout << (ok ? "Yes" : "NO") << endl;
    }
  }

  return 0;
}

0