- 1、本文档共14页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
exercise3教程
第三次作业
1、两名参与者交替从一堆石子中取出若干数目,其个数由参与者自已决定.但是要求参与者每次至少取出一个,至多取出一半,然后另一名参与者继续.拿到最后一个石子的参与者将输掉该游戏.
输入:输入开始时石子的个数
输出:如果先取者输,则输出“lose”,否则输出“win”
#includeiostream
#includecmath
using namespace std;
int main(){
int number;
cinnumber;
double i=1;
double k=pow(2.0,i)-1;
while(knumber){
++i;
k=pow(2.0,i)-1;
}
if(k==number)
coutlose;
if(knumber)
coutwin;
return 0;
}
2、Given some Chinese Coins (three kinds-- 1, 2, 5), and their number is num_1, num_2 and num_5 respectively, please output the minimum value that you cannot pay with given coins.
Input
Input contains multiple test cases. Each test case contains 3 positive integers num_1, num_2 and num_5 (0=num_i=1000). A test case containing 0 0 0 terminates the input and this test case is not to be processed.
Output
Output the minimum positive value that one cannot pay with given coins, one line for one case.
#includeiostream
#includecstdio
#includecstring
using namespace std;
const int MAX = 1000;
const int type[3] = {1,2,5};
bool ans[MAX]={0},tmp[MAX]={0};
int cnt[3];
void Search(){
int i,j,k;
for(i=0;i=cnt[0];++i){
ans[i]=true;
}
for(i=1;i3;++i){
for(j=0;jMAX;++j){
for(k=0;k=cnt[i] j+k*type[i]=MAX;++k){
if(tmp[j+k*type[i]] || ans[j])
tmp[j+k*type[i]]=true;
}
}
for(j=1;j=MAX;++j){
ans[j]=tmp[j];
tmp[j]=false;
}
}
}
int main(){
int res=0;
scanf(%d %d %d,cnt[0],cnt[1],cnt[2]);
if(cnt[0]==0 cnt[1]==0 cnt[2]==0){
printf(0);
return 0;
}
Search();
for(int i=0;i=MAX;++i){
if(!ans[i]){
res=i;
break;
}
}
printf(%d,res);
return 0;
}
3、写出完整的二分查找程序,要求:
(1)先将给定的数据利用快速排序进行排序(采用复杂度为nlg(n)的算法)。
(2)利用二分查找法判断给定的数据是否在数据集中。
#includeiostream
#includecstdio
using namespace std;
void quicksort(int a[],int left,int right){
if(left=right)
return;
else{
int first=left;
int last=right;
int key=a[first];
while(firstlast)
{
while(firstlast a[last]=key)
文档评论(0)