博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UVa 263 - Number Chains
阅读量:6278 次
发布时间:2019-06-22

本文共 1328 字,大约阅读时间需要 4 分钟。

题目:给你一个数字n0。将它的每一个位的数字按递增排序生成数a,按递减排序生成数b,

            新的数字为n1 = a-b,下次依照相同方法计算n1,知道出现循环,问计算了多少次。

分析:数论、模拟。直接模拟计算就可以,利用hash表判重。

说明:注意初始化。

#include 
#include
#include
#include
#include
#include
using namespace std;//hashtypedef struct hash_node{ int path; hash_node* next;}hnode;hnode* tabel[1002];hnode nodeh[1002];int hash_size;void hash_initial(){ memset(tabel, 0, sizeof(tabel)); hash_size = 0;}int hash_find(int s){ int v = s%1001; for (hnode* p = tabel[v] ; p ; p = p->next) if (p->path == s) return 1; nodeh[hash_size].next = tabel[v]; nodeh[hash_size].path = s; tabel[v] = &nodeh[hash_size ++]; return 0;}//hash endint buf[11];int number(int *a, int n){ int value = 0; for (int i = 0 ; i < n ; ++ i) { value *= 10; value += a[i]; } return value;}int cmp1(int a, int b) { return a < b; }int cmp2(int a, int b) { return a > b; }int main(){ int n,count,sum,a,b; while (~scanf("%d",&n) && n) { printf("Original number was %d\n",n); hash_initial(); sum = 0; do { hash_find(n); sum ++; count = 0; while (n) { buf[count ++] = n%10; n /= 10; } sort(buf, buf+count, cmp2); a = number(buf, count); sort(buf, buf+count, cmp1); b = number(buf, count); printf("%d - %d = %d\n",a,b,n = a-b); }while (!hash_find(n)); printf("Chain length %d\n\n",sum); } return 0;}

转载地址:http://joyva.baihongyu.com/

你可能感兴趣的文章
利用JasperReport+iReport进行Web报表开发
查看>>
C# 获取与解析枚举类型的 DescriptionAttribute
查看>>
WPF之Binding深入探讨
查看>>
HDU 4333 Revolving Digits 扩展KMP
查看>>
Spark JDBC入门测试
查看>>
AMD and CMD are dead之KMDjs内核之分号
查看>>
数据库SQL优化大总结之 百万级数据库优化方案
查看>>
手把手教你写专利申请书/怎样申请专利
查看>>
MVC - 12.HtmlHelper
查看>>
反调试技术揭秘
查看>>
Cache的使用
查看>>
Ubuntu14.04搭建LAMP环境
查看>>
angular学习笔记(三十)-指令(2)-restrice,replace,template
查看>>
Wordpress 音频播放器 Wordpress audio player with jQuery audioplayer.swf
查看>>
NLog类库使用探索——详解配置
查看>>
MyEclipse7.0破解下载
查看>>
c++单例
查看>>
UnitOfWork 更新实体出错解决办法
查看>>
自定义Image HtmlHelper
查看>>
mysql学习笔记 第八天
查看>>