結果

問題 No.854 公平なりんご分配
ユーザー DAyamaCTFDAyamaCTF
提出日時 2019-07-27 08:36:26
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,510 ms / 3,153 ms
コード長 2,046 bytes
コンパイル時間 1,565 ms
コンパイル使用メモリ 163,992 KB
実行使用メモリ 243,840 KB
最終ジャッジ日時 2024-07-02 10:47:22
合計ジャッジ時間 29,361 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,760 KB
testcase_01 AC 4 ms
5,760 KB
testcase_02 AC 3 ms
5,760 KB
testcase_03 AC 3 ms
5,760 KB
testcase_04 AC 3 ms
5,888 KB
testcase_05 AC 3 ms
5,760 KB
testcase_06 AC 3 ms
5,888 KB
testcase_07 AC 3 ms
5,760 KB
testcase_08 AC 3 ms
5,760 KB
testcase_09 AC 3 ms
5,760 KB
testcase_10 AC 3 ms
5,760 KB
testcase_11 AC 4 ms
5,888 KB
testcase_12 AC 3 ms
5,888 KB
testcase_13 AC 3 ms
5,888 KB
testcase_14 AC 4 ms
5,760 KB
testcase_15 AC 4 ms
5,888 KB
testcase_16 AC 4 ms
5,760 KB
testcase_17 AC 4 ms
6,016 KB
testcase_18 AC 4 ms
5,888 KB
testcase_19 AC 3 ms
5,888 KB
testcase_20 AC 4 ms
5,888 KB
testcase_21 AC 4 ms
5,888 KB
testcase_22 AC 8 ms
6,016 KB
testcase_23 AC 11 ms
6,912 KB
testcase_24 AC 15 ms
7,680 KB
testcase_25 AC 9 ms
6,528 KB
testcase_26 AC 16 ms
7,808 KB
testcase_27 AC 14 ms
7,808 KB
testcase_28 AC 9 ms
6,016 KB
testcase_29 AC 6 ms
6,144 KB
testcase_30 AC 9 ms
6,400 KB
testcase_31 AC 15 ms
7,424 KB
testcase_32 AC 203 ms
55,936 KB
testcase_33 AC 165 ms
32,384 KB
testcase_34 AC 344 ms
75,136 KB
testcase_35 AC 252 ms
60,160 KB
testcase_36 AC 103 ms
8,704 KB
testcase_37 AC 189 ms
52,824 KB
testcase_38 AC 149 ms
43,904 KB
testcase_39 AC 456 ms
79,360 KB
testcase_40 AC 174 ms
28,544 KB
testcase_41 AC 228 ms
49,152 KB
testcase_42 AC 313 ms
73,856 KB
testcase_43 AC 311 ms
51,328 KB
testcase_44 AC 355 ms
68,736 KB
testcase_45 AC 246 ms
17,664 KB
testcase_46 AC 423 ms
67,840 KB
testcase_47 AC 181 ms
40,064 KB
testcase_48 AC 300 ms
72,776 KB
testcase_49 AC 297 ms
74,368 KB
testcase_50 AC 183 ms
52,440 KB
testcase_51 AC 422 ms
71,040 KB
testcase_52 AC 230 ms
33,920 KB
testcase_53 AC 148 ms
33,408 KB
testcase_54 AC 238 ms
39,424 KB
testcase_55 AC 120 ms
33,664 KB
testcase_56 AC 121 ms
35,072 KB
testcase_57 AC 141 ms
29,312 KB
testcase_58 AC 208 ms
14,976 KB
testcase_59 AC 91 ms
26,240 KB
testcase_60 AC 167 ms
29,400 KB
testcase_61 AC 67 ms
9,856 KB
testcase_62 AC 185 ms
25,600 KB
testcase_63 AC 138 ms
26,624 KB
testcase_64 AC 60 ms
13,508 KB
testcase_65 AC 243 ms
65,436 KB
testcase_66 AC 114 ms
20,480 KB
testcase_67 AC 212 ms
43,776 KB
testcase_68 AC 165 ms
21,632 KB
testcase_69 AC 265 ms
79,488 KB
testcase_70 AC 101 ms
28,800 KB
testcase_71 AC 118 ms
31,232 KB
testcase_72 AC 134 ms
8,832 KB
testcase_73 AC 187 ms
53,504 KB
testcase_74 AC 290 ms
64,384 KB
testcase_75 AC 148 ms
31,232 KB
testcase_76 AC 219 ms
51,072 KB
testcase_77 AC 280 ms
72,448 KB
testcase_78 AC 224 ms
23,680 KB
testcase_79 AC 243 ms
44,928 KB
testcase_80 AC 240 ms
47,192 KB
testcase_81 AC 201 ms
49,280 KB
testcase_82 AC 1,002 ms
243,712 KB
testcase_83 AC 1,421 ms
243,840 KB
testcase_84 AC 1,389 ms
243,840 KB
testcase_85 AC 1,461 ms
243,712 KB
testcase_86 AC 658 ms
243,840 KB
testcase_87 AC 1,020 ms
243,712 KB
testcase_88 AC 991 ms
243,712 KB
testcase_89 AC 996 ms
243,712 KB
testcase_90 AC 990 ms
243,712 KB
testcase_91 AC 1,012 ms
243,712 KB
testcase_92 AC 1,510 ms
243,840 KB
testcase_93 AC 1,505 ms
243,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

typedef long long ll;
typedef unsigned long long ull;
typedef pair<ll, ll> P;

#define fi first
#define se second
#define repl(i,a,b) for(ll i=(ll)(a);i<(ll)(b);i++)
#define rep(i,n) repl(i,0,n)
#define all(x) (x).begin(),(x).end()
#define dbg(x) cout<<#x"="<<x<<endl
#define mmax(x,y) (x>y?x:y)
#define mmin(x,y) (x<y?x:y)
#define maxch(x,y) x=mmax(x,y)
#define minch(x,y) x=mmin(x,y)
#define uni(x) x.erase(unique(all(x)),x.end())
#define exist(x,y) (find(all(x),y)!=x.end())
#define bcnt __builtin_popcountll

#define INF 1e16
#define mod 1000000007

vector<ll> operator+(const vector<ll>& a,const vector<ll>& b){
  vector<ll> res(a.size(),0);
  rep(i,a.size())res[i]=a[i]+b[i];
  return res;
}
vector<ll> operator-(const vector<ll>& a,const vector<ll>& b){
  vector<ll> res(a.size(),0);
  rep(i,a.size())res[i]=a[i]-b[i];
  return res;
}

bool isprime[2001];
vector<ll> ps;
ll M;
vector<ll> calcvec(ll X){
  if(X==0) return vector<ll>(M,0);

  vector<ll> res(M,0);
  rep(i,ps.size()){
    while(X%ps[i]==0){
      res[i]++;
      X/=ps[i];
    }
  }
  if(X!=1) return vector<ll>(1,-1);
  return res;
}

ll N,Q;
vector<ll> sum[100010];
ll zsum[100010];

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

  repl(i,2,2001)isprime[i]=true;
  for(ll i=2;i<=2000;i++){
    if(isprime[i]){
      ps.push_back(i);
      for(ll j=i*2;j<=2000;j+=i)isprime[j]=false;
    }
  }
  M=ps.size();

  sum[0]=vector<ll>(M,0);
  cin>>N;
  rep(i,N){
    ll A;
    cin>>A;
    if(A==0){
      zsum[i+1]=zsum[i]+1;
    }else{
      zsum[i+1]=zsum[i];
    }
    vector<ll> B=calcvec(A);
    sum[i+1]=sum[i]+B;
  }

  cin>>Q;
  rep(i,Q){
    ll P,L,R;
    cin>>P>>L>>R;
    L--;
    if(zsum[R]-zsum[L]>0){
      cout<<"Yes"<<endl;
      continue;
    }
    vector<ll> tmp=sum[R]-sum[L];
    vector<ll> p=calcvec(P);
    if(p[0]==-1){
      cout<<"NO"<<endl;
      continue;
    }
    bool ok=true;
    rep(j,M)if(tmp[j]<p[j])ok=false;
    if(ok) cout<<"Yes"<<endl;
    else cout<<"NO"<<endl;
  }

  return 0;
}
0