結果

問題 No.473 和と積の和
ユーザー beetbeet
提出日時 2019-02-22 19:02:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,206 ms / 3,000 ms
コード長 1,336 bytes
コンパイル時間 2,787 ms
コンパイル使用メモリ 211,976 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-03 18:54:56
合計ジャッジ時間 10,436 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 797 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 1,206 ms
5,376 KB
testcase_26 AC 556 ms
5,376 KB
testcase_27 AC 481 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 201 ms
5,376 KB
testcase_35 AC 665 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 1,078 ms
5,376 KB
testcase_39 AC 424 ms
5,376 KB
testcase_40 AC 274 ms
5,376 KB
testcase_41 AC 3 ms
5,376 KB
testcase_42 AC 5 ms
5,376 KB
testcase_43 AC 90 ms
5,376 KB
testcase_44 AC 686 ms
5,376 KB
testcase_45 AC 2 ms
5,376 KB
testcase_46 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using Int = long long;
template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}


template<typename T>
vector<T> compress(vector<T> v){
  sort(v.begin(),v.end());
  v.erase(unique(v.begin(),v.end()),v.end());
  return v;
}

template<typename T>
map<T, Int> dict(const vector<T> &v){
  map<T, Int> res;
  for(Int i=0;i<(Int)v.size();i++)
    res[v[i]]=i;
  return res;
}

//INSERT ABOVE HERE
signed main(){
  Int n,x;
  cin>>n>>x;
  x++;
  
  Int ans=0;
  vector<Int> vs;
  for(Int i=1;i*i<=x;i++){
    if(x%i) continue;
    vs.emplace_back(i);
    vs.emplace_back(x/i);
  }
  vs=compress(vs);
  vs.erase(vs.begin());

  const Int INF = 1e9+1;
  vector<vector<Int> > ps(vs.size(),vector<Int>(n+1,1));
  for(Int i=0;i<(Int)vs.size();i++){
    for(Int j=1;j<=n;j++){
      ps[i][j]=ps[i][j-1]*vs[i];
      chmin(ps[i][j],INF);
    }
  }
  
  function<void(Int, Int, Int)> dfs=
    [&](Int k,Int l,Int b){
      // cout<<k<<" "<<l<<" "<<b<<endl;      
      if(k==n){
        ans+=b==x;
        return;
      }
      if(b*ps[l][n-k]>x) return;
      
      for(Int i=l;i<(Int)vs.size()&&b*vs[i]<=x;i++){  
        dfs(k+1,i,b*vs[i]);
      }
    };
  dfs(0,0,1);
  cout<<ans<<endl;
  return 0;
}
0