結果

問題 No.473 和と積の和
ユーザー rickythetarickytheta
提出日時 2016-12-23 01:16:04
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 352 ms / 3,000 ms
コード長 1,690 bytes
コンパイル時間 733 ms
コンパイル使用メモリ 56,576 KB
実行使用メモリ 32,956 KB
最終ジャッジ日時 2024-12-16 04:06:13
合計ジャッジ時間 3,531 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 121 ms
20,084 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 1 ms
6,820 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 1 ms
6,820 KB
testcase_13 AC 1 ms
6,816 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 2 ms
6,820 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 2 ms
6,816 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 2 ms
6,816 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 2 ms
6,816 KB
testcase_25 AC 25 ms
8,192 KB
testcase_26 AC 54 ms
12,576 KB
testcase_27 AC 16 ms
6,820 KB
testcase_28 AC 2 ms
6,820 KB
testcase_29 AC 8 ms
6,820 KB
testcase_30 AC 7 ms
6,820 KB
testcase_31 AC 7 ms
6,816 KB
testcase_32 AC 6 ms
6,820 KB
testcase_33 AC 3 ms
6,816 KB
testcase_34 AC 6 ms
6,820 KB
testcase_35 AC 62 ms
12,200 KB
testcase_36 AC 2 ms
6,816 KB
testcase_37 AC 3 ms
6,820 KB
testcase_38 AC 198 ms
26,444 KB
testcase_39 AC 352 ms
32,956 KB
testcase_40 AC 162 ms
19,948 KB
testcase_41 AC 1 ms
6,816 KB
testcase_42 AC 2 ms
6,816 KB
testcase_43 AC 10 ms
6,820 KB
testcase_44 AC 70 ms
14,724 KB
testcase_45 AC 2 ms
6,816 KB
testcase_46 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:69:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   69 |   scanf("%d%d",&n,&x);
      |   ~~~~~^~~~~~~~~~~~~~

ソースコード

diff #

#include <cstdio>
#include <vector>
#include <unordered_set>

using namespace std;

typedef vector<int> vi;

typedef int _loop_int;
#define REP(i,n) for(_loop_int i=0;i<(_loop_int)(n);++i)

struct myhash{
  size_t operator()(const vi &v) const {
    hash<int> hsh;
    size_t ret=0;
    for(int x:v){
      ret ^= hsh(x);
      ret = ret ^ (ret<<13);
      ret = ret ^ (ret>>17);
      ret = ret ^ (ret<<5);
    }
    return ret;
  }
};

int n,x;

typedef unordered_set<vi,myhash> ss;
ss po,nxt;
int num;
void step(int p){
  num--;
  nxt.clear();
  for(const vi &X : po){
    if(num<n && X[num]==1){
      vi add(n,0);
      int nw = X[0]*p;
      int it = 1;
      REP(j,n){
        if(it<n && X[it]<nw)add[j]=X[it++];
        else{
          add[j]=nw;
          nw = (1<<30) + 252;
        }
      }
      nxt.insert(add);
    }else{
      REP(i,n){
        if(i>0 && X[i]==X[i-1])continue;
        vi add(n,0);
        int nw = X[i]*p;
        int it = 0;
        REP(j,n){
          while(it==i)it++;
          if(it<n && X[it]<nw)add[j]=X[it++];
          else{
            add[j]=nw;
            nw = (1<<30) + 252;
          }
        }
        nxt.insert(add);
      }
    }
  }
  swap(po,nxt);
}

int main(){
  scanf("%d%d",&n,&x);
  x++;
  num = 0;
  {
    int t=x;
    for(int p=2;p*p<=t;p++){
      while(t%p==0)t/=p,num++;
    }
    if(t!=1)num++;
    if(n>num){
      puts("0");
      return 0;
    }else if(n==num){
      puts("1");
      return 0;
    }
  }
  // factorize x with n numbers
  po.insert(vi(n,1));
  for(int p=2;p*p<=x;p++){
    while(x%p==0){
      x/=p;
      step(p);
    }
  }
  if(x!=1)step(x);
  int ans = po.size();
  printf("%d\n",ans);
  return 0;
}
0