sicily 2010 H number

解释:根据规则构造数字,而不是从头遍历一遍判断,这样可以避免很多不必要的计算。

运行效率:0秒,312KB。

代码如下,类似广度优先搜索:

#include<stdio.h>
#include<string.h>
#include <iostream>
#include<queue>
using namespace std;
//int toInt(char c){ return c-'0'; }
//char toChar(int i){ return i+'0'; }
struct Node{
	Node* pre;
	int pos;
	char self;
	Node():pos(-1),pre(NULL)
	{
	}
};
int getNcount(int n)
{
	char strNum[10];
	int ret = 0;
	sprintf(strNum,"%d",n);
	int len = strlen(strNum);
	queue<Node*> Q;
	queue<Node*> Mem;
	for(char i = '1'; i <= strNum[0]; i++)
	{
		Node* n = new Node;
		n->self = i;
		n->pos = 0;
		Q.push(n);
		Mem.push(n);
	}
	while(!Q.empty())
	{
		Node* front = Q.front();
		Q.pop();
		if(front->pos == len-1)
		{
			ret++;
// 			char res[10];
// 			Node* tmp = front;
// 			int ide = 0;
// 			while(tmp != NULL)
// 			{
// 				res[ide++]=tmp->self;
// 				tmp = tmp->pre;
// 			}
// 			for(int i = ide-1; i >=0; i--)
// 				cout << res[i];
// 			cout << ' ';
		}
		else
		{
			if(front->pre == NULL)
			{
				char bound = '9';
				if(front->self == strNum[0])
				{
					bound = strNum[1];
				}
				for(char s = '0'; s <= bound; s++)
				{
					Node* n = new Node;
					n->self = s;
					n->pos = front->pos+1;
					n->pre = front;
					Q.push(n);
					Mem.push(n);
				}
			}
			else
			{
				int sign[3][2] = {{1,1},{1,-1},{-1,1}};
				bool duplicateTest[10]={false};
				for (int k = 0; k < 3; k++)
				{
					int selfInt = sign[k][0]*(front->pre->self-'0')+sign[k][1]*(front->self-'0');
					if(selfInt < 0 || selfInt > 9)
					{
						continue;
					}
					if(duplicateTest[selfInt] == true)
						continue;
					else
						duplicateTest[selfInt] = true;
					Node* n = new Node;
					n->pre = front;
					n->pos = front->pos+1;
					n->self = selfInt+'0';
					Node* tmp = n->pre;
					bool canPush = false;
					if(n->self <= strNum[n->pos])
						canPush = true;
					else
					{
						while(tmp != NULL)
						{
							if(tmp->self < strNum[tmp->pos])
							{
								canPush = true;
								break;
							}
							tmp = tmp->pre;
						}
					}
					if(canPush)
					{
						Q.push(n);
						Mem.push(n);
					}
					else
					{
						delete n;
					}
				}
			}
		}
	}
	while (!Mem.empty())
	{
		Node* front = Mem.front();
		Mem.pop();
		delete front;
	}
	return ret;
}
int main()
{
	int N;
	while(cin >> N)
	{
		if(N < 100)
		{
			cout << N << endl;
			continue;
		}
		int count = 0;
		count = getNcount(N);
		char str[10];
		sprintf(str,"%d",N);
		int len = strlen(str);
		len--;
		while(len > 2)
		{
			char tmp[10];
			int i;
			for(i = 0; i < len; i++)
				tmp[i] = '9';
			tmp[i]='\0';
			int n;
			sscanf(tmp,"%d",&n);
			count += getNcount(n);
			len--;
		}
		if(len == 2)
			count += 99;
		cout << count << endl;
	}
}
时间: 2025-01-05 20:08:49

sicily 2010 H number的相关文章

Sicily 2005.Lovely Number

题目地址:2005.Lovely Number 思路: 若测试数据出现的次数为奇数,则输出它. 所以,可以先排序,若前后相等,前后都设为0,最后不为0的则可以输出. 具体代码如下: 1 #include <iostream> 2 #include <algorithm> 3 using namespace std; 4 5 int main() { 6 int t; 7 while (cin >> t) { 8 int *array = new int[t]; 9 fo

linux命令总结之state命令

ls 命令及其许多参数提供了一些非常有用的文件信息.另一个不太为人所熟知的命令 stat 提供了一些更为有用的信息. 1 [[email protected] scripts]# man stat 2 STAT(1) User Commands STAT(1) 3 4 NAME 5 stat - display file or file system status 6 7 SYNOPSIS 8 stat [OPTION]... FILE... 9 10 DESCRIPTION 11 Displa

“AS3.0高级动画编程”学习:第三章等角投影(上)

什么是等角投影(isometric)? 原作者:菩提树下的杨过出处:http://yjmyzz.cnblogs.com 刚接触这个概念时,我也很茫然,百度+google了N天后,找到了一些文章: [转载]等角(斜45度)游戏与数学  ( 原文链接:http://www.javaeye.com/articles/1225) [转载]使用illustrator和正交投影原理以及基本三视图制图   (http://www.vanqy.cn/index.php/2009/03/working-with-

在c#中运行js脚本(将js文件生成为.dll文件)

原文链接:http://www.cnblogs.com/xhan/archive/2010/10/22/1857992.html 前言: 本来在搞一个Google翻译的接口--向Google翻译发送请求--返回翻译数据... 结果发现发送请求中的一个参数(tk)是需要验证的,验证不通过,报403错误... 网上搜到一个可以自己生成tk值的方法,不过是js写的...省事的想将js代码直接拿来用... 就看到了博客中的一个例子... 0-- function b(a, b) { for (var d

编程题目分类(剪辑)

1. 编程入门 2. 数据结构 3. 字符串 4. 排序 5. 图遍历 6. 图算法 7. 搜索:剪枝,启发式搜索 8. 动态规划/递推 9. 分治/递归 10. 贪心 11. 模拟 12. 算术与代数 13. 组合问题 14. 数论 15. 网格,几何,计算几何 [编程入门] PC 110101, uva 100, The 3n+1 problem, 难度 1 PC 110102, uva 10189, Minesweeper, 难度 1 PC 110103, uva 10137, The T

设置用户失效时间

linux下设置与修改用户失效时间及密码失效时间,有需要的朋友可以参考下. 用法:chage [选项] 用户名 选项:-d, --lastday 最近日期 将最近一次密码设置时间设为"最近日期"-E, --expiredate 过期日期 将帐户过期时间设为"过期日期"-h, --help 显示此帮助信息并退出-I, --inactive 失效密码 将因过期而失效的密码设为"失效密码"-l, --list 显示帐户年龄信息-m, --mindays

linux基础命令汇总

说明 本文仅仅对一些基础命令做演示,不涉及过多的原理性,以及概念性的东西, 示例中仅仅列出常用的选项,对于不常用的选项不做介绍以及演示. 其中部分帮助信息是来源于man查寻结果,未作翻译,请谅解. enable(内置命令) 命令示例 enable -a 显示所有激活和禁用的内置命令 enable -n 显示所有已经禁用的内置命令 enable -n echo 禁用内置命令 echo 命令演示 禁用命令 [[email protected] ~]#enable -n echo [[email pr

172. Factorial Trailing Zeroes

1. 问题描述 Given an integer n, return the number of trailing zeroes in n!.Note: Your solution should be in logarithmic time complexity.Tags: MathSimilar Problems: (H) Number of Digit One 2. 解题思路 分解质因子, 当且仅当 因子中出现 一对 (2,5)时, 最后结果会增加一个 trailing zero.1. 2的

F - Humidex(1.4.2)

Time Limit:1000MS     Memory Limit:65536KB     64bit IO Format:%I64d & %I64u Submit Status Description Adapted from Wikipedia, the free encyclopedia The humidex is a measurement used by Canadian meteorologists to reflect the combined effect of heat a