码迷,mamicode.com
首页 > 其他好文 > 详细

UVA 417 - Word Index(数论)

时间:2014-05-11 20:49:23      阅读:428      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   tar   c   

题意:417 - Word Index

题意:每个字符串按题目中那样去映射成一个数字,输入字符串,输出数字
思路:这题还是比较水的,由于一共只有83000多个数字,所以对应一个个数字去映射就可以了,注意字符串进位的情况处理即可
代码:
#include <stdio.h>
#include <string.h>
#include <map>
#include <string>
using namespace std;

char str[10];
map<string, int> idx;

void init() {
	memset(str, 0, sizeof(str));
	str[0] = ‘a‘; idx[str] = 1;
	for (int i = 2; i <= 83681; i++) {
		for (int j = 4; j >= 0; j--) {
			if (str[j] != 0) {
				if (str[j] != ‘z‘) str[j]++;
				else {
					int k = j;
					while (k >= 0) {
						if (‘z‘ - str[k] == j - k)
							k--;
						else break;
					}
					if (k != -1) {
						str[k]++;
						for (int l = k + 1; l <= j; l++) {
							str[l] = str[l - 1] + 1;
						}
					}
					else {
						for (int l = 0; l <= j + 1; l++)
							str[l] = ‘a‘ + l;
					}
				}
				idx[str] = i;
				break;
			}
		}
	}
}

int main() {
	init();
	char s[10];
	while (~scanf("%s", s)) {
		if (idx.count(s))
			printf("%d\n", idx[s]);
		else
			printf("0\n");
	}
	return 0;
}


UVA 417 - Word Index(数论),布布扣,bubuko.com

UVA 417 - Word Index(数论)

标签:style   blog   class   code   tar   c   

原文地址:http://blog.csdn.net/accelerator_/article/details/25541989

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!