結果

問題 No.473 和と積の和
ユーザー rickythetarickytheta
提出日時 2016-12-23 01:16:04
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 322 ms / 3,000 ms
コード長 1,690 bytes
コンパイル時間 725 ms
コンパイル使用メモリ 56,704 KB
実行使用メモリ 32,948 KB
最終ジャッジ日時 2024-05-09 14:14:45
合計ジャッジ時間 3,162 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 104 ms
20,244 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 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 1 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 1 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 22 ms
8,192 KB
testcase_26 AC 49 ms
12,572 KB
testcase_27 AC 15 ms
6,784 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 7 ms
5,376 KB
testcase_30 AC 7 ms
5,376 KB
testcase_31 AC 6 ms
5,376 KB
testcase_32 AC 5 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 5 ms
5,376 KB
testcase_35 AC 54 ms
11,944 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 3 ms
5,376 KB
testcase_38 AC 183 ms
26,316 KB
testcase_39 AC 322 ms
32,948 KB
testcase_40 AC 153 ms
19,816 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 9 ms
5,376 KB
testcase_44 AC 67 ms
14,848 KB
testcase_45 AC 1 ms
5,376 KB
testcase_46 AC 2 ms
5,376 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