Kickdown UVA11809

本文介绍了一项关于特殊传动装置的实验设计,旨在验证不均匀分布齿轮的高效性能。实验使用平直而非圆形齿轮段,通过调整两个齿轮段的相对位置来寻找切割所需的最短条带长度。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

题目A research laboratory of a world-leading automobile company has received an order to create a special transmission mechanism, which allows for incredibly efficient kickdown — an operation of switching to lower gear. After several months of research engineers found that the most efficient solution requires special gears with teeth and cavities placed non-uniformly. They calculated the optimal flanks of the gears. Now they want to perform some experiments to prove their findings. The first phase of the experiment is done with planar toothed sections, not round-shaped gears. A section of length n consists of n units. The unit is either a cavity of height h or a tooth of height 2h. Two sections are required for the experiment: one to emulate master gear (with teeth at the bottom) and one for the driven gear (with teeth at the top). There is a long stripe of width 3h in the laboratory and its length is enough for cutting two engaged sections together. The sections are irregular but they may still be put together if shifted along each other. The stripe is made of an expensive alloy, so the engineers want to use as little of it as possible. You need to find the minimal length of the stripe which is enough for cutting both sections simultaneously. Input The input file contains several test cases, each of them as described below. There are two lines in the input, each contains a string to describe a section. The first line describes master section (teeth at the bottom) and the second line describes driven section (teeth at the top). Each character in a string represents one section unit — 1 for a cavity and 2 for a tooth. The sections can not be flipped or rotated. Each string is non-empty and its length does not exceed 100. Output For each test case, write to the output a line containing a single integer number — the minimal length of the stripe required to cut off given sections.

Sample Input

2112112112

2212112

12121212

21212121

2211221122

21212

Sample Output 10 8 15

思路:我的想法是把两组数据当作字符串读入分别储存的在两个数组中,使两个数组分两个方向相互移动然后移动时两个数组相加,比较那时的ascall码值是否大于‘3’有大于三则继续移动记录两种情况下移动最小值,输出极小值。

代码如下:

#include<stdio.h>
#include<string.h>
char a[1005];
char b[1005];
int main()
{
	while(scanf("%s %s",a,b)==2)
	{
		int len1=strlen(a);
		int len2=strlen(b);
		int i,j;
		int count1,count2;
		for(i=0;i<=len1;i++)
		{
			for(j=0;j<len2;j++)
			{
				if(i+j>=len1) a[i+j]='0';
				if(a[i+j]+b[j]-'0'>'3') break;
			}
			if(j==len2)
			{
				if(i+j<=len1) {count1=len1;break;}
				else {count1=i+j;break;}
			}
		}
		for(i=0;i<=len2;i++)
		{
			for(j=0;j<len1;j++)
			{
				if(i+j>=len2) b[i+j]='0';
				if(b[i+j]+a[j]-'0'>'3') break;
			}
			if(j==len1)
			{
				if(i+j<=len2) {count2=len2;break;}
				else {count2=i+j;break;}
			}
		}
		printf("%d\n",count1<count2?count1:count2);
		
	}
	return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值