UVA1583(最小生成元)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UVA1583(最小生成元)相关的知识,希望对你有一定的参考价值。

对于这种需要一遍遍枚举求解的,打表可以提高很多效率

#include <iostream>
#include <string>
#include <cstring>
#include <cstdlib>
#include <cstdio>
#include <cmath>
#include <algorithm>
#include <stack>
#include <cctype>
using namespace std;

#define mem(a,b) memset(a,b,sizeof(a))
#define pf printf
#define sf scanf
#define spf sprintf
#define debug printf("!\n")
#define INF 10000
#define MAXN 5010
#define MAX(a,b) a>b?a:b
#define blank pf("\n")
#define LL long long

int ans[100010];


int main()
{
     int i;
     mem(ans,0);
     for(i=1;i<100000;i++)
     {
          int m = i,n=i;
          while(n)
          {
               m+=n%10;
               n/=10;
          }
          if(ans[m]==0 || i<ans[m])
               ans[m] = i;
     }
     int t;
     sf("%d",&t);
     pf("%d\n",ans[t]);
}

 

以上是关于UVA1583(最小生成元)的主要内容,如果未能解决你的问题,请参考以下文章

最小生成元 (Digit Generator, ACM/ICPC Seoul 2005, UVa1583)

紫书例题3-5 生成元(Digit Generator, ACM/ICPC Seoul 2005, UVa1583)

例题3-5 Digit Generator UVA - 1583

uva 1583 Digit Generator(Uva-1583)

Digit Generator UVa1583

UVA1395 (最苗条的最小生成树)