結果

問題 No.854 公平なりんご分配
ユーザー snteasntea
提出日時 2019-07-26 23:14:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 4,275 bytes
コンパイル時間 2,631 ms
コンパイル使用メモリ 185,828 KB
実行使用メモリ 122,696 KB
最終ジャッジ日時 2023-09-15 04:21:35
合計ジャッジ時間 22,346 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 1 ms
4,380 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 1 ms
4,380 KB
testcase_13 AC 1 ms
4,376 KB
testcase_14 AC 2 ms
4,376 KB
testcase_15 AC 2 ms
4,380 KB
testcase_16 AC 2 ms
4,380 KB
testcase_17 AC 2 ms
4,376 KB
testcase_18 AC 2 ms
4,380 KB
testcase_19 AC 2 ms
4,380 KB
testcase_20 AC 2 ms
4,380 KB
testcase_21 AC 2 ms
4,376 KB
testcase_22 AC 5 ms
4,376 KB
testcase_23 AC 4 ms
4,380 KB
testcase_24 AC 7 ms
4,380 KB
testcase_25 AC 4 ms
4,376 KB
testcase_26 AC 8 ms
4,380 KB
testcase_27 AC 6 ms
4,376 KB
testcase_28 AC 6 ms
4,380 KB
testcase_29 AC 3 ms
4,376 KB
testcase_30 AC 5 ms
4,380 KB
testcase_31 AC 7 ms
4,376 KB
testcase_32 AC 90 ms
28,252 KB
testcase_33 AC 131 ms
16,476 KB
testcase_34 AC 256 ms
37,812 KB
testcase_35 AC 162 ms
30,336 KB
testcase_36 AC 76 ms
4,548 KB
testcase_37 AC 89 ms
26,668 KB
testcase_38 AC 62 ms
22,312 KB
testcase_39 AC 450 ms
39,956 KB
testcase_40 AC 146 ms
14,524 KB
testcase_41 AC 168 ms
24,820 KB
testcase_42 AC 209 ms
37,228 KB
testcase_43 AC 299 ms
25,968 KB
testcase_44 AC 305 ms
34,624 KB
testcase_45 AC 197 ms
9,036 KB
testcase_46 AC 437 ms
34,152 KB
testcase_47 AC 122 ms
20,336 KB
testcase_48 AC 187 ms
36,812 KB
testcase_49 AC 161 ms
37,380 KB
testcase_50 AC 75 ms
26,500 KB
testcase_51 AC 422 ms
35,716 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 WA -
testcase_70 WA -
testcase_71 WA -
testcase_72 WA -
testcase_73 WA -
testcase_74 WA -
testcase_75 WA -
testcase_76 WA -
testcase_77 WA -
testcase_78 WA -
testcase_79 WA -
testcase_80 WA -
testcase_81 WA -
testcase_82 WA -
testcase_83 AC 752 ms
122,536 KB
testcase_84 AC 740 ms
122,660 KB
testcase_85 AC 464 ms
71,284 KB
testcase_86 WA -
testcase_87 WA -
testcase_88 WA -
testcase_89 WA -
testcase_90 WA -
testcase_91 WA -
testcase_92 AC 1,897 ms
122,500 KB
testcase_93 AC 1,906 ms
122,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize ("O3")
#ifdef LOCAL111
	#define _GLIBCXX_DEBUG
#else
	#define NDEBUG
#endif
#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
const int INF = 1e9;
using namespace std;
template<typename T, typename U> ostream& operator<< (ostream& os, const pair<T,U>& p) { os << '(' << p.first << ' ' << p.second << ')'; return os; }

#define endl '\n'
#define ALL(a)  (a).begin(),(a).end()
#define SZ(a) int((a).size())
#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define RFOR(i,a,b) for (int i=(b)-1;i>=(a);i--)
#define REP(i,n)  FOR(i,0,n)
#define RREP(i,n) for (int i=(n)-1;i>=0;i--)
#ifdef LOCAL111
	#define DEBUG(x) cout<<#x<<": "<<(x)<<endl
	template<typename T> void dpite(T a, T b){ for(T ite = a; ite != b; ite++) cout << (ite == a ? "" : " ") << *ite; cout << endl;}
#else
	#define DEBUG(x) true
	template<typename T> void dpite(T a, T b){ return; }
#endif
#define F first
#define S second
#define SNP string::npos
#define WRC(hoge) cout << "Case #" << (hoge)+1 << ": "
template<typename T> void pite(T a, T b){ for(T ite = a; ite != b; ite++) cout << (ite == a ? "" : " ") << *ite; cout << endl;}
template<typename T> bool chmax(T& a, T b){if(a < b){a = b; return true;} return false;}
template<typename T> bool chmin(T& a, T b){if(a > b){a = b; return true;} return false;}

template<typename T>
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 U,typename... V>
typename enable_if<is_same<T, U>::value!=0>::type
fill_v(U &u,const V... v){u=U(v...);}

template<typename T,typename U,typename... V>
typename enable_if<is_same<T, U>::value==0>::type
fill_v(U &u,const V... v){
  for(auto &e:u) fill_v<T>(e,v...);
}

const array<int, 4> dx = {0, 1, 0, -1};
const array<int, 4> dy = {1, 0, -1, 0};


typedef long long int LL;
typedef unsigned long long ULL;
typedef pair<int,int> P;

void ios_init(){
	cout.setf(ios::fixed);
	cout.precision(12);
#ifdef LOCAL111
	return;
#endif
	ios::sync_with_stdio(false); cin.tie(0);
}

std::vector<bool> eratosthenes(int n){
	std::vector<bool> res(n+1,true);
	res[0] = false;
	res[1] = false;
	for(long long i = 2; i*i <= n; i++){
		for(long long j = 2; i*j <= n; j++){
			res[i*j] = false;
		}
	}
	return res;
}

template<typename T>
unordered_map<T,int> primeFactorizem(T x){
	unordered_map<T,int> res;
	for(T i = 2; i*i <= x; i++){
		while(x%i == 0){
			res[i]++;
			x /= i;
		}
	}
	if(x != 1) res[x]++;
	return res;
}

int main()
{
	ios_init();
	int n;
	while(cin >> n) {
		vector<int> a(n);
		REP(i, n) cin >> a[i];
		int ma = *max_element(ALL(a));
		if(ma == 1) {
			vector<int> zero_cnt(n+1);
			REP(i, n) {
				zero_cnt[i+1] = zero_cnt[i] + (a[i] == 0);
			}
			dpite(ALL(zero_cnt));
			int q;
			cin >> q;
			REP(_, q) {
				LL p;
				int l, r;
				cin >> p >> l >> r;
				l--;
				DEBUG(r); DEBUG(l);
				DEBUG(zero_cnt[r] - zero_cnt[l]);
				if(p >= 2) {
					cout << "NO" << endl;
				} else {
					if(zero_cnt[r] - zero_cnt[l] == 0) {
						cout << "Yes" << endl;
					} else {
						cout << "NO" << endl;
					}
				}
			}
			continue;
		}
		auto era = eratosthenes(ma);
		vector<int> pv;
		REP(i, SZ(era)) if(era[i]) {
			DEBUG(i);
			pv.push_back(i);
		}
		vector<vector<int>> imos(SZ(pv), vector<int>(n + 1));
		vector<int> zero_cnt(n+1);
		REP(i, n) {
			// DEBUG(a[i]);
			int t = a[i];
			if(t == 0) {
				zero_cnt[i+1]++;
			} else {
				REP(j, SZ(pv)) {
					while(t % pv[j] == 0) {
						t /= pv[j];
						imos[j][i + 1]++;
					}
				}
				assert(t == 1);
			}
			// DEBUG(t);
		}

		REP(i, n) zero_cnt[i+1] += zero_cnt[i];

		REP(i, SZ(pv)) REP(j, n) {
			imos[i][j+1] += imos[i][j];
		}
		int q;
		cin >> q;
		REP(_, q) {
			// DEBUG(_);
			LL p;
			int l, r;
			cin >> p >> l >> r; l--;
			if(zero_cnt[r] - zero_cnt[l] != 0) {
				cout << "NO" << endl;
				continue;
			}
			vector<int> pf(SZ(pv));
			bool ans = true;
			REP(i, SZ(pv)) {
				while(p % pv[i] == 0) {
					p /= pv[i];
					pf[i]++;
				}
			}
			REP(i, SZ(pv)) {
				if(pf[i] > imos[i][r] - imos[i][l]) {
					ans = false;
				}
			}
			if(p != 1) {
				ans = false;
			}

			if(ans) {
				cout << "Yes" << endl;
			} else {
				cout << "NO" << endl;
			}
		}
	}
}
0