結果

問題 No.854 公平なりんご分配
ユーザー FF256grhyFF256grhy
提出日時 2019-07-26 23:19:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,418 ms / 3,153 ms
コード長 2,851 bytes
コンパイル時間 1,751 ms
コンパイル使用メモリ 176,716 KB
実行使用メモリ 8,072 KB
最終ジャッジ日時 2024-07-02 09:41:58
合計ジャッジ時間 15,373 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 4 ms
6,940 KB
testcase_23 AC 3 ms
6,940 KB
testcase_24 AC 5 ms
6,944 KB
testcase_25 AC 3 ms
6,944 KB
testcase_26 AC 5 ms
6,940 KB
testcase_27 AC 4 ms
6,940 KB
testcase_28 AC 3 ms
6,944 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 3 ms
6,940 KB
testcase_31 AC 5 ms
6,940 KB
testcase_32 AC 22 ms
6,944 KB
testcase_33 AC 39 ms
6,944 KB
testcase_34 AC 60 ms
6,940 KB
testcase_35 AC 40 ms
6,940 KB
testcase_36 AC 44 ms
6,940 KB
testcase_37 AC 21 ms
6,940 KB
testcase_38 AC 16 ms
6,940 KB
testcase_39 AC 107 ms
6,944 KB
testcase_40 AC 50 ms
6,940 KB
testcase_41 AC 46 ms
6,940 KB
testcase_42 AC 51 ms
6,944 KB
testcase_43 AC 81 ms
6,940 KB
testcase_44 AC 74 ms
6,940 KB
testcase_45 AC 104 ms
6,944 KB
testcase_46 AC 106 ms
6,944 KB
testcase_47 AC 36 ms
6,944 KB
testcase_48 AC 44 ms
6,940 KB
testcase_49 AC 39 ms
6,944 KB
testcase_50 AC 19 ms
6,940 KB
testcase_51 AC 105 ms
6,944 KB
testcase_52 AC 101 ms
6,944 KB
testcase_53 AC 50 ms
6,940 KB
testcase_54 AC 98 ms
6,944 KB
testcase_55 AC 24 ms
6,940 KB
testcase_56 AC 18 ms
6,944 KB
testcase_57 AC 42 ms
6,944 KB
testcase_58 AC 97 ms
6,940 KB
testcase_59 AC 19 ms
6,944 KB
testcase_60 AC 61 ms
6,940 KB
testcase_61 AC 40 ms
6,944 KB
testcase_62 AC 72 ms
6,944 KB
testcase_63 AC 61 ms
6,940 KB
testcase_64 AC 20 ms
6,948 KB
testcase_65 AC 32 ms
6,940 KB
testcase_66 AC 43 ms
6,944 KB
testcase_67 AC 72 ms
6,940 KB
testcase_68 AC 86 ms
6,940 KB
testcase_69 AC 23 ms
6,944 KB
testcase_70 AC 22 ms
6,944 KB
testcase_71 AC 29 ms
6,940 KB
testcase_72 AC 62 ms
6,940 KB
testcase_73 AC 31 ms
6,940 KB
testcase_74 AC 87 ms
6,940 KB
testcase_75 AC 47 ms
6,940 KB
testcase_76 AC 77 ms
6,944 KB
testcase_77 AC 68 ms
6,940 KB
testcase_78 AC 108 ms
6,940 KB
testcase_79 AC 93 ms
6,940 KB
testcase_80 AC 79 ms
6,944 KB
testcase_81 AC 56 ms
6,944 KB
testcase_82 AC 2,418 ms
6,940 KB
testcase_83 AC 341 ms
6,940 KB
testcase_84 AC 2,382 ms
6,944 KB
testcase_85 AC 326 ms
8,072 KB
testcase_86 AC 193 ms
6,940 KB
testcase_87 AC 314 ms
6,940 KB
testcase_88 AC 312 ms
6,940 KB
testcase_89 AC 335 ms
6,940 KB
testcase_90 AC 331 ms
6,940 KB
testcase_91 AC 316 ms
6,940 KB
testcase_92 AC 379 ms
6,940 KB
testcase_93 AC 364 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long   signed int LL;
typedef long long unsigned int LU;
#define incID(i, l, r) for(LL i = (l)    ; i <  (r); ++i)
#define incII(i, l, r) for(LL i = (l)    ; i <= (r); ++i)
#define decID(i, l, r) for(LL i = (r) - 1; i >= (l); --i)
#define decII(i, l, r) for(LL i = (r)    ; i >= (l); --i)
#define inc(i, n)  incID(i, 0, n)
#define inc1(i, n) incII(i, 1, n)
#define dec(i, n)  decID(i, 0, n)
#define dec1(i, n) decII(i, 1, n)
#define inID(v, l, r) ((l) <= (v) && (v) <  (r))
#define inII(v, l, r) ((l) <= (v) && (v) <= (r))
#define PB push_back
#define EB emplace_back
#define MP make_pair
#define FI first
#define SE second
#define  ALL(v)  v.begin(),  v.end()
#define RALL(v) v.rbegin(), v.rend()
template<typename T> bool setmin  (T & a, T b) { if(b <  a) { a = b; return true; } else { return false; } }
template<typename T> bool setmax  (T & a, T b) { if(b >  a) { a = b; return true; } else { return false; } }
template<typename T> bool setmineq(T & a, T b) { if(b <= a) { a = b; return true; } else { return false; } }
template<typename T> bool setmaxeq(T & a, T b) { if(b >= a) { a = b; return true; } else { return false; } }
LL mo(LL a, LL b) { assert(b > 0); a %= b; if(a < 0) { a += b; } return a; }
LL fl(LL a, LL b) { assert(b > 0); return (a > 0 ? a / b : (a - b + 1) / b); }
LL ce(LL a, LL b) { assert(b > 0); return (a < 0 ? a / b : (a + b - 1) / b); }
template<typename T> T gcd(T a, T b) { return (b == 0 ? a : gcd(b, a % b)); }
template<typename T> T lcm(T a, T b) { return a / gcd(a, b) * b; }
#define bit(b, i) (((b) >> (i)) & 1)
#define BC __builtin_popcountll
#define SC static_cast
#define SI(v) SC<int>(v.size())
#define SL(v) SC<LL >(v.size())
#define RF(e, v) for(auto & e: v)
#define ef else if
#define UR assert(false)

// ---- ----

#define LB(v, x) distance(v.begin(), lower_bound(ALL(v), x))
#define UB(v, x) distance(v.begin(), upper_bound(ALL(v), x))

vector<pair<LL, LL>> prime_factorization(LL x) {
	assert(x > 0);
	vector<pair<LL, LL>> f;
	for(LL i = 2; i <= x; i++) {
		if(i > 2000) { return { { x, 1 } }; } //////////
		
		if(i * i > x) { i = x; }
		if(x % i == 0) {
			f.EB(i, 0);
			while(x % i == 0) { f.back().SE++; x /= i; }
		}
	}
	return f;
}

int n, q;
vector<vector<int>> v(2001);

int main() {
	cin >> n;
	vector<int> z(n + 1);
	inc(i, n) {
		int a; cin >> a;
		if(a != 0) {
			auto f = prime_factorization(a);
			RF(e, f) {
				inc(j, e.SE) { v[e.FI].PB(i); }
			}
		} else {
			z[i + 1] = 1;
		}
	}
	inc(i, n) { z[i + 1] += z[i]; }
	
	cin >> q;
	inc(i, q) {
		int p, l, r;
		cin >> p >> l >> r;
		auto f = prime_factorization(p);
		l--; r--;
		bool ans = true;
		if(z[r + 1] - z[l] == 0) {
			RF(e, f) {
				ans &= (e.FI <= 2000 && UB(v[e.FI], r) - LB(v[e.FI], l) >= e.SE);
			}
		}
		cout << (ans ? "Yes" : "NO") << "\n";
	}
	
	return 0;
}
0