結果

問題 No.854 公平なりんご分配
ユーザー kk
提出日時 2021-03-20 20:34:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,450 ms / 3,153 ms
コード長 1,624 bytes
コンパイル時間 2,783 ms
コンパイル使用メモリ 215,996 KB
実行使用メモリ 123,256 KB
最終ジャッジ日時 2024-11-21 10:11:19
合計ジャッジ時間 26,421 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 3 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 3 ms
6,820 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 3 ms
6,816 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 2 ms
6,816 KB
testcase_20 AC 3 ms
6,820 KB
testcase_21 AC 2 ms
6,816 KB
testcase_22 AC 4 ms
6,820 KB
testcase_23 AC 5 ms
6,816 KB
testcase_24 AC 7 ms
6,816 KB
testcase_25 AC 4 ms
6,816 KB
testcase_26 AC 7 ms
6,816 KB
testcase_27 AC 6 ms
6,816 KB
testcase_28 AC 4 ms
6,820 KB
testcase_29 AC 3 ms
6,816 KB
testcase_30 AC 4 ms
6,816 KB
testcase_31 AC 7 ms
6,816 KB
testcase_32 AC 83 ms
28,672 KB
testcase_33 AC 104 ms
16,640 KB
testcase_34 AC 216 ms
38,272 KB
testcase_35 AC 143 ms
30,592 KB
testcase_36 AC 48 ms
6,820 KB
testcase_37 AC 81 ms
27,008 KB
testcase_38 AC 59 ms
22,656 KB
testcase_39 AC 372 ms
40,448 KB
testcase_40 AC 124 ms
14,848 KB
testcase_41 AC 147 ms
25,088 KB
testcase_42 AC 179 ms
37,632 KB
testcase_43 AC 258 ms
26,112 KB
testcase_44 AC 263 ms
35,072 KB
testcase_45 AC 138 ms
9,344 KB
testcase_46 AC 364 ms
34,560 KB
testcase_47 AC 107 ms
20,608 KB
testcase_48 AC 162 ms
37,120 KB
testcase_49 AC 145 ms
37,888 KB
testcase_50 AC 69 ms
26,880 KB
testcase_51 AC 356 ms
36,224 KB
testcase_52 AC 259 ms
17,536 KB
testcase_53 AC 132 ms
17,280 KB
testcase_54 AC 283 ms
20,224 KB
testcase_55 AC 82 ms
17,408 KB
testcase_56 AC 61 ms
18,176 KB
testcase_57 AC 125 ms
15,104 KB
testcase_58 AC 119 ms
8,064 KB
testcase_59 AC 52 ms
13,696 KB
testcase_60 AC 165 ms
15,232 KB
testcase_61 AC 43 ms
6,816 KB
testcase_62 AC 163 ms
13,312 KB
testcase_63 AC 153 ms
13,952 KB
testcase_64 AC 31 ms
7,168 KB
testcase_65 AC 124 ms
33,280 KB
testcase_66 AC 88 ms
10,752 KB
testcase_67 AC 229 ms
22,528 KB
testcase_68 AC 168 ms
11,392 KB
testcase_69 AC 93 ms
40,448 KB
testcase_70 AC 68 ms
14,976 KB
testcase_71 AC 87 ms
16,128 KB
testcase_72 AC 66 ms
6,820 KB
testcase_73 AC 115 ms
27,392 KB
testcase_74 AC 304 ms
32,768 KB
testcase_75 AC 123 ms
16,256 KB
testcase_76 AC 264 ms
26,112 KB
testcase_77 AC 244 ms
36,992 KB
testcase_78 AC 205 ms
12,288 KB
testcase_79 AC 281 ms
23,040 KB
testcase_80 AC 252 ms
24,320 KB
testcase_81 AC 199 ms
25,216 KB
testcase_82 AC 537 ms
123,256 KB
testcase_83 AC 537 ms
123,256 KB
testcase_84 AC 541 ms
123,000 KB
testcase_85 AC 567 ms
123,124 KB
testcase_86 AC 446 ms
123,128 KB
testcase_87 AC 1,440 ms
123,256 KB
testcase_88 AC 1,444 ms
123,256 KB
testcase_89 AC 1,442 ms
123,128 KB
testcase_90 AC 1,450 ms
123,124 KB
testcase_91 AC 1,449 ms
123,128 KB
testcase_92 AC 1,447 ms
123,000 KB
testcase_93 AC 1,447 ms
123,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

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;
}

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

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

  int n;
  cin >> n;
  vector<int> a(n);
  vector<int> zeros(n + 1);
  for (int i = 0; i < n; i++) {
    cin >> a[i];
    zeros[i+1] = zeros[i] + (a[i] == 0);
  }
  
  vector<vector<int> > factors;
  vector<int> primes;
  
  for (int p = 0; p < 2000; p++) {
    if (isprime(p)) {
      primes.push_back(p);
      vector<int> f(n+1);
      for (int i = 0; i < n; i++) {
        int b = a[i];
        f[i+1] += f[i];
        while (b > 0 && b % p == 0) {
          b /= p;
          ++f[i+1];
        }

      }
      factors.push_back(f);
    }
  }

  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) {
        x /= primes[j];
        ++c;
      }
      if (c > factors[j][r] - factors[j][l-1]) {
        ck = false;
        break;
      }
    }
    ck &= x == 1;
    ck |= zeros[r] - zeros[l-1] > 0;
    if (ck)
      cout << "Yes" << endl;
    else
      cout << "NO" << endl;
  }
  
  return 0;
}
0