天平秤杂币问题一般解求解程序

2023-12-19 22:50

本文主要是介绍天平秤杂币问题一般解求解程序,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

(这是我很久之前写的一个程序,目前博客上还没有什么文章,就算充个数把吐舌头

本程序的问题描述可参见:Balance puzzle,或者也可以阅读我之前写的一个PPT。


头文件balance.h如下:

/************************************************************************************/
/*        This demo implements the coding method for soving n coins problem         */
/*                   No Copyrights! Feel free to copy it!                           */
/*----------------------------------------------------------------------------------*/
/*Algorithm:                                                                        */
/*1. Violence search the solution for 3<=n<=12                                      */
/*2. Use the induction steps in the proof to get the following solution             */
/************************************************************************************/#include<stdio.h>
#include<malloc.h>
#include<string.h>#define MAX 100;//k is no more than 100typedef struct set{int n;char * * node;
}SET;void convert(char * set[],int n,int k);
int thresh(int k);
SET * searchT(int n,int k,char * a);
SET * search(int n,int k);
void show(int k,bool state,SET * a);
bool check(SET * a); 
搜索程序:

#include"balance.h"char * s1[3]={"01","20","12"};
char * s2[4]={"001","010","220","102"};
char * s3[5]={"001","010","220","012","120"};
char * s4[6]={"001","010","022","110","202","021"};
char * s5[7]={"001","010","011","220","202","120","102"};
char * s6[8]={"001","010","011","220","202","012","121","122"};
char * s7[9]={"001","010","011","220","202","120","201","112","122"};
char * s8[10]={"001","010","011","220","202","012","120","102","221","100"};
char * s9[11]={"001","010","111","011","220","202","120","102","221","212","122"};
char * s10[12]={"001","010","111","011","220","202","012","120","102","221","122","200"};/*calculate the threshold (3^k-3)/2*/
int thresh(int k)
{int tmp=1;for(int i=0;i<k;i++)tmp=tmp*3;return (tmp-3)/2;
}/*put k char 'a' ahead of a1*/
char * putch(char a,int k,char * a1)
{int n=strlen(a1);char * result;result=(char *)malloc(n+k+1);for(int i=0;i<n+k;i++){if(i<k)*(result+i)=a;else*(result+i)=*(a1+i-k);}*(result+n+k)='\0';return result;
}/*make a srting array that add k chars 'c' ahead of each string of a*/
char * * makeSet(char * a[],int n,int k,char c)
{char * * result;result=(char * *)malloc(sizeof(char *)*n);for(int i=0;i<n;i++){*(result+i)=putch(c,k,a[i]);}return result;
}/*make a SET from a string array*/
SET * MakeSET(char * * a,int n)
{SET * result;result=(SET *)malloc(sizeof(set));result->n=n;result->node=a;return result;
}char * * getlow(int n)
{switch(n){case 3:return s1;case 4:return s2;case 5:return s3;case 6:return s4;case 7:return s5;case 8:return s6;case 9:return s7;case 10:return s8;case 11:return s9;case 12:return s10;default:return NULL;}
}SET * below12(int k,int n)
{if(n==3){if(k<3)return MakeSET(getlow(3),3);elsereturn MakeSET(makeSet(getlow(3),3,k-2,'0'),3);}if(n>12||n<3)return NULL;SET * result;char * * tmp;tmp=(char * *)malloc(sizeof(char *)*n);result=(SET *)malloc(sizeof(set));result->n=n;tmp=makeSet(getlow(n),n,k-3,'0');result->node=tmp;return result;
}/*combine two set*/
SET * combine(SET * a,SET * b)
{SET * result;result=(SET *)malloc(sizeof(set));char * * tmp;tmp=(char * *)malloc(sizeof(char *)*(a->n+b->n));for(int i=0;i<a->n+b->n;i++){if(i<a->n)*(tmp+i)=*(a->node+i);else*(tmp+i)=*(b->node+i-a->n);}result->n=a->n+b->n;result->node=tmp;return result;
}char * Inverse(char * a)
{char * result;result=(char *)malloc(strlen(a)+1);for(int i=0;i<strlen(a);i++){if(*(a+i)=='0')*(result+i)='0';else if(*(a+i)=='1')*(result+i)='2';else*(result+i)='1';}*(result+strlen(a))='\0';return result;
}/*The case when n=(3^k-3)/2*/
SET * searchT(int n,int k,char * a)
{SET * temp,* temp1,* temp2;char * * tmp,c;if(n!=thresh(k))return NULL;tmp=(char * *)malloc(sizeof(char *)*3);if(n==3){if(a[0]=='2'&&a[1]=='2'){char * s1="10",*s2="02",*s3="21";*tmp=s1;*(tmp+1)=s2;*(tmp+2)=s3;}else{char * s1="10",*s2="01",*s3="22";*tmp=s1;*(tmp+1)=s2;*(tmp+2)=s3;}return MakeSET(tmp,3);}else{temp=searchT((n-3)/3,k-1,a+1);if(*a=='1')c='2';elsec='1';*tmp=putch(*a,1,putch('0',k-1,""));*(tmp+1)=putch(c,1,a+1);*(tmp+2)=putch('0',1,Inverse(a+1));temp1=MakeSET(tmp,3);temp2=combine(MakeSET(makeSet(temp->node,temp->n,1,'0'),temp->n),MakeSET(makeSet(temp->node,temp->n,1,'1'),temp->n));temp2=combine(MakeSET(makeSet(temp->node,temp->n,1,'2'),temp->n),temp2);return combine(temp2,temp1);}}/*
The algorithm we used here is different from we 
presented in PPT, since we just simply let the 
uncantained string to be "2...2". 
*/
SET * search(int n,int k)
{int thre=thresh(k),threp=thresh(k-1);if(n==thre)return searchT(n,k,putch('2',k,""));if(n>thre||n<3)return NULL;else if(n<=12)return below12(k,n);else{SET * result,* temp1,* temp2,*temp3,*temp4,*temp5;char * * tmp;if(n<2*threp+1){if(n%2==0){temp1=search(n/2,k-1);temp2=MakeSET(makeSet(temp1->node,temp1->n,1,'1'),temp1->n);temp3=MakeSET(makeSet(temp1->node,temp1->n,1,'2'),temp1->n);return combine(temp2,temp3);}else{temp1=search((n-3)/2,k-1);temp2=search(3,k-1);temp3=MakeSET(makeSet(temp1->node,temp1->n,1,'1'),temp1->n);temp4=MakeSET(makeSet(temp1->node,temp1->n,1,'2'),temp1->n);temp1=MakeSET(makeSet(temp2->node,temp2->n,1,'0'),temp2->n);return combine(combine(temp3,temp1),temp4);}}else if(n==2*threp+2){temp1=search((n-4)/2,k-1);temp2=search(4,k-1);temp3=MakeSET(makeSet(temp1->node,temp1->n,1,'1'),temp1->n);temp4=MakeSET(makeSet(temp1->node,temp1->n,1,'2'),temp1->n);temp1=MakeSET(makeSet(temp2->node,temp2->n,1,'0'),temp2->n);return combine(combine(temp3,temp1),temp4);}else if(n<=3*threp){temp1=search(threp,k-1);temp2=search(n-2*threp,k-1);temp3=MakeSET(makeSet(temp1->node,temp1->n,1,'1'),temp1->n);temp4=MakeSET(makeSet(temp1->node,temp1->n,1,'2'),temp1->n);temp1=MakeSET(makeSet(temp2->node,temp2->n,1,'0'),temp2->n);return combine(combine(temp3,temp1),temp4);}else{int j=n-2-2*threp;temp1=search(threp,k-1);temp2=search(j,k-1);temp3=MakeSET(makeSet(temp1->node,temp1->n,1,'1'),temp1->n);temp4=MakeSET(makeSet(temp1->node,temp1->n,1,'2'),temp1->n);temp1=MakeSET(makeSet(temp2->node,temp2->n,1,'0'),temp2->n);temp5=combine(combine(temp3,temp1),temp4);tmp=(char **)malloc(sizeof(char *)*2);*tmp=putch('1',k,"");*(tmp+1)=putch('2',k,"");return combine(temp5,MakeSET(tmp,2));}}
}bool check(SET * a)
{char ** temp=a->node;int k=strlen(*(a->node)),*tmp;tmp=(int *)malloc(sizeof(int)*k);for(int i=0;i<k;i++)tmp[i]=0;for(int i=0;i<a->n;i++){for(int j=0;j<k;j++){if(*(*(temp+i)+j)=='1')tmp[j]++;else if(*(*(temp+i)+j)=='2')tmp[j]--;}}for(int i=0;i<k;i++)if(tmp[i]!=0)return false;return true;
}
演示主程序:

#include"balance.h"int main()
{SET *result;int n,k;printf("Please input the order: ");scanf("%d",&n);printf("Please input the dimension: ");scanf("%d",&k);result=search(n,k);if(result==NULL){printf("Can't find solution!\n");system("pause");exit(1);}else{printf("The constructible set is as follow:\n");for(int i=0;i<result->n;i++)printf("%s\t",*(result->node+i));printf("\n");}show(1,true,result);system("pause");return 0;
}


这篇关于天平秤杂币问题一般解求解程序的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/513978

相关文章

大数据小内存排序问题如何巧妙解决

《大数据小内存排序问题如何巧妙解决》文章介绍了大数据小内存排序的三种方法:数据库排序、分治法和位图法,数据库排序简单但速度慢,对设备要求高;分治法高效但实现复杂;位图法可读性差,但存储空间受限... 目录三种方法:方法概要数据库排序(http://www.chinasem.cn对数据库设备要求较高)分治法(常

Vue项目中Element UI组件未注册的问题原因及解决方法

《Vue项目中ElementUI组件未注册的问题原因及解决方法》在Vue项目中使用ElementUI组件库时,开发者可能会遇到一些常见问题,例如组件未正确注册导致的警告或错误,本文将详细探讨这些问题... 目录引言一、问题背景1.1 错误信息分析1.2 问题原因二、解决方法2.1 全局引入 Element

关于@MapperScan和@ComponentScan的使用问题

《关于@MapperScan和@ComponentScan的使用问题》文章介绍了在使用`@MapperScan`和`@ComponentScan`时可能会遇到的包扫描冲突问题,并提供了解决方法,同时,... 目录@MapperScan和@ComponentScan的使用问题报错如下原因解决办法课外拓展总结@

MybatisGenerator文件生成不出对应文件的问题

《MybatisGenerator文件生成不出对应文件的问题》本文介绍了使用MybatisGenerator生成文件时遇到的问题及解决方法,主要步骤包括检查目标表是否存在、是否能连接到数据库、配置生成... 目录MyBATisGenerator 文件生成不出对应文件先在项目结构里引入“targetProje

C#使用HttpClient进行Post请求出现超时问题的解决及优化

《C#使用HttpClient进行Post请求出现超时问题的解决及优化》最近我的控制台程序发现有时候总是出现请求超时等问题,通常好几分钟最多只有3-4个请求,在使用apipost发现并发10个5分钟也... 目录优化结论单例HttpClient连接池耗尽和并发并发异步最终优化后优化结论我直接上优化结论吧,

Java内存泄漏问题的排查、优化与最佳实践

《Java内存泄漏问题的排查、优化与最佳实践》在Java开发中,内存泄漏是一个常见且令人头疼的问题,内存泄漏指的是程序在运行过程中,已经不再使用的对象没有被及时释放,从而导致内存占用不断增加,最终... 目录引言1. 什么是内存泄漏?常见的内存泄漏情况2. 如何排查 Java 中的内存泄漏?2.1 使用 J

numpy求解线性代数相关问题

《numpy求解线性代数相关问题》本文主要介绍了numpy求解线性代数相关问题,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧... 在numpy中有numpy.array类型和numpy.mat类型,前者是数组类型,后者是矩阵类型。数组

解决systemctl reload nginx重启Nginx服务报错:Job for nginx.service invalid问题

《解决systemctlreloadnginx重启Nginx服务报错:Jobfornginx.serviceinvalid问题》文章描述了通过`systemctlstatusnginx.se... 目录systemctl reload nginx重启Nginx服务报错:Job for nginx.javas

Redis缓存问题与缓存更新机制详解

《Redis缓存问题与缓存更新机制详解》本文主要介绍了缓存问题及其解决方案,包括缓存穿透、缓存击穿、缓存雪崩等问题的成因以及相应的预防和解决方法,同时,还详细探讨了缓存更新机制,包括不同情况下的缓存更... 目录一、缓存问题1.1 缓存穿透1.1.1 问题来源1.1.2 解决方案1.2 缓存击穿1.2.1

vue解决子组件样式覆盖问题scoped deep

《vue解决子组件样式覆盖问题scopeddeep》文章主要介绍了在Vue项目中处理全局样式和局部样式的方法,包括使用scoped属性和深度选择器(/deep/)来覆盖子组件的样式,作者建议所有组件... 目录前言scoped分析deep分析使用总结所有组件必须加scoped父组件覆盖子组件使用deep前言