PAT 甲级 1023 Have Fun with Numbers (20分)

博客围绕一个C++题目展开,要求判断给定不超20位的正整数翻倍后,所得数字是否仅为原数字的一种排列。给出了输入输出规范和示例,还分享了代码实现的注意点,如用char数组模拟大数、scanf使用、进位处理等。

题目

Notice that the number 123456789 is a 9-digit number consisting exactly the numbers from 1 to 9, with no duplication. Double it we will obtain 246913578, which happens to be another 9-digit number consisting exactly the numbers from 1 to 9, only in a different permutation. Check to see the result if we double it again!

Now you are suppose to check if there are more numbers with this property. That is, double a given number with k digits, you are to tell if the resulting number consists of only a permutation of the digits in the original number.

Input Specification:

Each input contains one test case. Each case contains one positive integer with no more than 20 digits.

Output Specification:

For each test case, first print in a line “Yes” if doubling the input number gives a number that consists of only a permutation of the digits in the original number, or “No” if not. Then in the next line, print the doubled number.

Sample Input:

1234567899

Sample Output:

Yes
2469135798

Code:

#include<bits/stdc++.h> 
using namespace std;

int main(){
	char num[22];
	scanf("%s",num); 
	//这里参考了柳神代码,使用char数组模拟大数
	
	set<int> s1;
	set<int> s2;
	for(int i=0;i<strlen(num);i++)
		s1.insert(num[i]-'0');
	
	char res[22];
	//flag当作进位
	int index=0,flag=0;
	for(int i=strlen(num)-1;i>=0;i--){
		int tmp=2*(num[i]-'0')+flag;
		if(tmp<10){
			res[index]=tmp+'0';
			flag=0;
		}
		else{
			res[index]=tmp%10+'0';
			flag=tmp/10;
		}
		index++;
	}
	if(flag!=0){
		s1.insert(flag);
		res[index]=flag+'0';
		index++;
	}
	
	for(int i=index-1;i>=0;i--)
		s2.insert(res[i]-'0');

	if(s1==s2) cout<<"Yes"<<endl;
	else cout<<"No"<<endl;
	for(int i=index-1;i>=0;i--)
		cout<<res[i];
	
	return 0;
}

记录

  • char数组模拟大数(一开始用string出错了…)
  • scanf char数组不用加&
  • char数组长度用strlen
  • 注意进位时先乘2再加flag(即1)
  • 最后一个flag需要判断是否为1,如果是1也需要加到s2中!
  • permutation – n.置换; 排列(方式); 组合(方式)
  • duplication – n.(不必要的)重复;
内容概要:本文系统梳理了多个科研领域的前沿研究与技术实现,重点涵盖FDTD方法中的完美匹配层(PML)研究,以及Matlab/Simulink在电磁、电力、控制、通信、信号处理、图像处理、路径规划、能源系统优化等领域的仿真与算法实现。文中列举了大量基于Matlab和Python的科研案例,如风电功率预测、负荷预测、无人机三维路径规划、电池系统故障诊断、雷达模拟、通信编码、微电网优化调度等,并强调结合智能优化算法(如粒子群、遗传算法、深度学习等)提升系统性能。同时,提供了丰富的代码资源与仿真模型,涵盖永磁同步电机控制、逆变器设计、多智能体任务分配、虚拟电厂调度等复杂系统,助力科研人员快速开展复现实验与创新研究。; 适合人群:具备一定编程基础,熟悉Matlab/Python工具,从事电气工程、自动化、通信、人工智能、新能源、控制科学等相关领域研究的研发人员及研究生。; 使用场景及目标:① 学习并实现FDTD仿真中的PML边界条件以有效抑制数值反射;② 掌握Matlab/Simulink在多物理场建模、控制系统设计与优化算法中的综合应用;③ 借助提供的代码资源完成科研复现、课程设计、竞赛项目或工程原型开发; 阅读建议:此资源以科研实战为导向,不仅提供理论方法,更强调代码实现与仿真验证。建议读者结合自身研究方向,按目录顺序查阅相关模块,下载配套代码进行调试与二次开发,以达到学以致用、融会贯通的目的。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值