第九届河南省程序设计大赛 1277-Decimal integer conversion (java)

本文介绍了一个编程挑战,任务是根据错误的二进制和三进制表示找出原始十进制数值。通过遍历所有可能的错误位并计算其对应的十进制值来解决问题。

1277-Decimal integer conversion


内存限制:64MB 时间限制:1000ms Special Judge: No

accepted:5 submit:7

题目描述:

XiaoMing likes mathematics, and he is just learning how to convert numbers between different bases , but he keeps making errors since he is only 6 years old. Whenever XiaoMing converts a number to a new base and writes down the result, he always writes one of the digits wrong. For example , if he converts the number 14 into binary (i.e., base 2), the correct result should be "1110", but he might instead write down "0110" or "1111". XiaoMing never accidentally adds or deletes digits, so he might write down a number with a leading digit of " 0" if this is the digit she gets wrong. Given XiaoMing 's output when converting a number N into base 2 and base 3, please determine the correct original value of N (in base 10). (N<=10^10) You can assume N is at most 1 billion, and that there is a unique solution for N. 

输入描述:

The first line of the input contains one integers T, which is the nember of test cases (1<=T<=8) Each test case specifies: * Line 1: The base-2 representation of N , with one digit written incorrectly. * Line 2: The base-3 representation of N , with one digit written incorrectly.

输出描述:

For each test case generate a single line containing a single integer , the correct value of N

样例输入:

复制
1
1010
212

样例输出:

14

提示:


这道题只要算出每一位二进制或三进制错位后的十进制,相等就是结果。

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
	  Scanner sc=new Scanner(System.in);
	  int T=sc.nextInt();
	  while(T-->0)
	  {   
		  int[] a=new int[50];//二进制数组
		  int[] b=new int[105];//三进制数组
		  char[] s1=new char[50];//二进制字符串
		  char[] s2=new char[50];//三进制字符串
		  String str1=sc.next();
		  String str2=sc.next();
		  s1=str1.toCharArray();
		  s2=str2.toCharArray();
		  int len1=str1.length();
		  int len2=str2.length();
		  for(int i=0;i<len1;i++)
		  {
			  s1[i]= (char) ((s1[i]-'0'+1)%2+'0');//对二进制错位
			  //System.out.print(s1[i]+" ");
			  for(int j=0;j<len1;j++)
				  a[i]+=(s1[j]-'0')*(int)(Math.pow(2,len1-1-j));
			  //System.out.print(a[i]+" ");
			  s1[i]=(char) ((s1[i]-'0'+1)%2+'0');//对二进制还原
		  }
		  int k=0;
		  for(int i=0;i<len2;i++)
		  {
			  s2[i]=(char) ((s2[i]-'0'+1)%3+'0');//对三进制错位
			  //System.out.print(s2[i]+" ");
			  for(int j=0;j<len2;j++)
				  b[k]+=(s2[j]-'0')*(int)(Math.pow(3,len2-1-j));
			  //System.out.print(b[k]+" ");
			  k++;
			  s2[i]=(char) ((s2[i]-'0'+1)%3+'0');//每次累加1,错位
			  //System.out.print(s2[k]+" ");
			  for(int j=0;j<len2;j++)
				  b[k]+=(s2[j]-'0')*(int)(Math.pow(3,len2-1-j));
			  //System.out.print(b[k]+" ");
			  k++;
			  s2[i]=(char) ((s2[i]-'0'+1)%3+'0');//对三进制还原
		  }
		  for(int i=0;i<len1;i++)
			  for(int j=0;j<k;j++)
			  {
				  if(a[i]==b[j])
				  {
					  System.out.println(a[i]);
					  break;
				  }
			  }
	  }
	  

	}

}

胚胎实例分割数据集 一、基础信息 • 数据集名称:胚胎实例分割数据集 • 图片数量: 训练集:219张图片 验证集:49张图片 测试集:58张图片 总计:326张图片 • 训练集:219张图片 • 验证集:49张图片 • 测试集:58张图片 • 总计:326张图片 • 分类类别: 胚胎(embryo):表示生物胚胎结构,适用于发育生物学研究。 • 胚胎(embryo):表示生物胚胎结构,适用于发育生物学研究。 • 标注格式:YOLO格式,包含实例分割的多边形标注,适用于实例分割任务。 • 数据格式:图片来源于相关研究领域,格式为常见图像格式,细节清晰。 二、适用场景 • 胚胎发育AI分析系统:构建能够自动分割胚胎实例的AI模型,用于生物学研究中的形态变化追踪和量化分析。 • 医学与生物研究:在生殖医学、遗传学等领域,辅助研究人员进行胚胎结构识别、分割和发育阶段评估。 • 学术与创新研究:支持计算机视觉与生物医学的交叉学科研究,推动AI在胚胎学中的应用,助力高水平论文发表。 • 教育与实践培训:用于高校或研究机构的实验教学,帮助学生和从业者掌握实例分割技术及胚胎学知识。 三、数据集优势 • 精准与专业性:实例分割标注由领域专家完成,确保胚胎轮廓的精确性,提升模型训练的可靠性。 • 任务专用性:专注于胚胎实例分割,填补相关领域数据空白,适用于细粒度视觉分析。 • 格式兼容性:采用YOLO标注格式,易于集成到主流深度学习框架中,简化模型开发与部署流程。 • 科学价值突出:为胚胎发育研究、生命科学创新提供关键数据资源,促进AI在生物学中的实际应用。
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值