[usaco]罗马数字

简介: <p>Preface Numbering</p> <p>A certain book's prefaces are numbered in upper case Roman numerals. Traditional Roman numeral values use a single letter to represent a certain subset of decimal numb

Preface Numbering

A certain book's prefaces are numbered in upper case Roman numerals. Traditional Roman numeral values use a single letter to represent a certain subset of decimal numbers. Here is the standard set:

        I   1     L   50    M  1000
        V   5     C  100
        X  10     D  500

As many as three of the same marks that represent 10n may be placed consecutively to form other numbers:

III is 3
CCC is 300
Marks that have the value 5x10n are never used consecutively.

Generally (with the exception of the next rule), marks are connected together and written in descending order to form even more numbers:

CCLXVIII = 100+100+50+10+5+1+1+1 = 268
Sometimes, a mark that represents 10^n is placed before a mark of one of the two next higher values (I before V or X; X before L or C; etc.). In this case, the value of the smaller mark is SUBTRACTED from the mark it precedes:

IV = 4
IX = 9
XL = 40
This compound mark forms a unit and may not be combined to make another compound mark (e.g., IXL is wrong for 39; XXXIX is correct).
Compound marks like XD, IC, and XM are not legal, since the smaller mark is too much smaller than the larger one. For XD (wrong for 490), one would use CDXC; for IC (wrong for 99), one would use XCIX; for XM (wrong for 990), one would use CMXC. 90 is expressed XC and not LXL, since L followed by X connotes that successive marks are X or smaller (probably, anyway).

Given N (1 <= N < 3,500), the number of pages in the preface of a book, calculate and print the number of I's, V's, etc. (in order from lowest to highest) required to typeset all the page numbers (in Roman numerals) from 1 through N. Do not print letters that do not appear in the page numbers specified.

If N = 5, then the page numbers are: I, II, III, IV, V. The total number of I's is 7 and the total number of V's is 2.

PROGRAM NAME: preface
INPUT FORMAT
A single line containing the integer N.
SAMPLE INPUT (file preface.in)
5

OUTPUT FORMAT
The output lines specify, in ascending order of Roman numeral letters, the letter, a single space, and the number of times that letter appears on preface page numbers. Stop printing letter totals after printing the highest value letter used to form preface numbers in the specified set.
SAMPLE OUTPUT (file preface.out)
I 7
V 2

 

------------------------------------------------------------------------------------------------------------------------
题目给出一个整数N,要求求出1-》N的所有的罗马数表示法,然后统计各个字母的数量。

由罗马数的表示法,可以看出,每一位上的表示是基本相同的,
比如1->9
I II III IV V VI VII VIII IX
10 ->90
X XX XXX XL L LX LXX LXXX XC

从上边可以看出一些规律。
因此每一位数字需要3个字母即可表示出来。
我们定义以下二维数组:
char index1[4][3]={
 {'I','V','X'},
 {'X','L','C'},
 {'C','D','M'},
 {'M'}
};
因此可以用这个数组表示一位数:
10^r->9*10^r:
index1[r][0]   index1[r][0]index1[r][0]   index1[r][0]index1[r][0]index1[r][0] index1[r][0]index1[r][1] index1[r][1]
index1[r][1]index1[r][0] index1[r][1]index1[r][0]index1[r][1] index1[r][1]index1[r][0]index1[r][1]index1[r][0]index1[r][0]index1[r][0] index1[r][0]index1[r][2]
因此我的解法是:
---------------------------------------------------------------------------------------------------------------------------
 

/*
ID: yunleis2
PROG: preface
LANG: C++
*/
#include<fstream>
#include<iostream> 
using namespace std;
int result[7]={0};
char str[7]={'I','V',
'X','L',
'C','D','M'};
void getNum1(int r,int c);
int getindex11(char c);
char index1[4][3]={
	{'I','V','X'},
	{'X','L','C'},
	{'C','D','M'},
	{'M'}
};
int main()
{
	fstream fin("preface.in",ios::in);
	int N;
	fin>>N;
	for(int i=1;i<=N;i++)
	{
		int r=0;
		int t=i;
		while(t!=0)
		{
			getNum1(r,t%10);
			r++;
			t=t/10;
		}
	}
	fstream fout("preface.out",ios::out);
	for(int i=0;i<7;i++)
	{
		if(result[i]!=0)
		{
			fout<<str[i]<<" "<<result[i]<<endl;
		}
	} 
}
void getNum1(int r,int c)
{
	 
	if(c==1)
	{
		result[getindex11(index1[r][0])]++;
	}
	if(c==2)
	{
		result[getindex11(index1[r][0])]+=2;
	}
 
	if(c==3)
	{
		result[getindex11(index1[r][0])]+=3;
	}
	if(c==4)
	{
		result[getindex11(index1[r][0])]++;
		result[getindex11(index1[r][1])]++;
	}
	if(c==5)
	{
		result[getindex11(index1[r][1])]++;
	}
	if(c==6)
	{
		result[getindex11(index1[r][1])]++;
		result[getindex11(index1[r][0])]++;
	}
	if(c==7)
	{
		result[getindex11(index1[r][1])]++;
		result[getindex11(index1[r][0])]++;
		result[getindex11(index1[r][0])]++;
	}
	if(c==8)
	{
		result[getindex11(index1[r][1])]++;
		result[getindex11(index1[r][0])]++;
		result[getindex11(index1[r][0])]++;
		result[getindex11(index1[r][0])]++;
	}
	if(c==9)
	{
		result[getindex11(index1[r][0])]++;
		result[getindex11(index1[r][2])]++;
	}
}
int getindex11(char c)
{
	if(c=='I')
		return 0;
	if(c=='V')
		return 1;
	if(c=='X')
		return 2;
	if(c=='L')
		return 3;
	if(c=='C')
		return 4;
	if(c=='D')
		return 5;
	if(c=='M')
		return 6;
}


 

目录
相关文章
|
数据采集 监控 安全
Go语言在网络安全中的应用
【2月更文挑战第24天】Go语言,作为一种高效且易于维护的编程语言,近年来在网络安全领域得到了广泛的应用。本文旨在探讨Go语言在网络安全中的应用,包括其在防火墙、入侵检测、网络爬虫以及Web安全等方面的应用,并分析了Go语言在网络安全领域的优势与前景。
|
关系型数据库 分布式数据库 数据库
PolarDB PostgreSQL版:Oracle兼容的高性能数据库
PolarDB PostgreSQL版是一款高性能的数据库,具有与Oracle兼容的特性。它采用了分布式架构,可以轻松处理大量的数据,同时还支持多种数据类型和函数,具有高可用性和可扩展性。它还提供了丰富的管理工具和性能优化功能,为企业提供了可靠的数据存储和处理解决方案。PolarDB PostgreSQL版在数据库领域具有很高的竞争力,可以满足各种企业的需求。
|
12月前
|
前端开发 JavaScript API
前端技术探索:从基础到未来趋势的深度剖析
前端技术探索:从基础到未来趋势的深度剖析
262 1
|
文字识别 PyTorch Go
从零开始的OCR之旅
本文介绍了如何配置环境并使用EasyOCR库进行OCR任务,包括安装依赖、下载必要的模型包,并提供了一个简单的使用示例。
从零开始的OCR之旅
|
10月前
|
人工智能 安全 测试技术
EXAONE 3.5:LG 推出的开源 AI 模型,采用 RAG 和多步推理能力降低模型的幻觉问题
EXAONE 3.5 是 LG AI 研究院推出的开源 AI 模型,擅长长文本处理,能够有效降低模型幻觉问题。该模型提供 24 亿、78 亿和 320 亿参数的三个版本,支持多步推理和检索增强生成技术,适用于多种应用场景。
298 9
EXAONE 3.5:LG 推出的开源 AI 模型,采用 RAG 和多步推理能力降低模型的幻觉问题
|
12月前
|
计算机视觉
HDR的主要标准有哪些?
HDR(高动态范围)技术通过提供更广阔的亮度范围和丰富的色彩细节,显著提升图像质量,使电影、图片和游戏画面更加逼真。相比SDR,HDR拥有更宽的色域、更高的色深和动态范围,支持多种行业标准如HDR10、Dolby Vision、HDR10+、HLG和HDR Vivid,为用户带来更接近真实的视觉体验。
|
缓存 NoSQL Java
Spring Boot整合Redis缓存的最佳实践
Spring Boot整合Redis缓存的最佳实践
|
C# 数据安全/隐私保护 开发者
『.NET』.NET 中常用的AOP框架——Castle
📣读完这篇文章里你能收获到 - AOP概念介绍 - 结合具体代码讲解.NET项目接入Castle
482 0
『.NET』.NET 中常用的AOP框架——Castle
|
Web App开发 Unix 测试技术
什么是兼容性测试?
什么是兼容性测试?
351 0