算法习题回溯法
合集下载
相关主题
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
#define N 1000
using namespace std;
int n,m,d,cp=0,cw=0,sum=0;
int c[N][N],w[N][N];
void backtrack(int i){
if(i>n){
if(cw<sum)
sum = cw;
return ;
}
for(int j=1;j<=m;j++){
算法设计与分析第三次作业
计科三班康玥20110801330
5-3
设某一机器由n个部件组成,每一种部件都可以从m个不同的供应商处购得。设wi,j是从供应商j处购得的部件i的重量,ci,j是相应的价格。试设计一个算法,给出总价格不超过c的最小重量机器设计。
Input
由文件input.txt给出输入数据。每组测试数据第一行有3个正整数n,m和d。接下来的2n行,每行m个数。前n行是ci,j,后n行是wi,j。
fin>>n;
for(int i=1;i<=n;i++){
for(int j=1;j<=n;j++){
fin>>c[i][j];
x[j] = 0;
}
cost+=c[i][i];
}
work(1,0);
ofstream fout("output.txt",ios::out);
cout<<cost<<endl;
cw+=w[i][j];
cp+=c[i][j];
if(cw<sum && cp<=d)
backtrack(i+1);
cw-=w[i][j];
cp-=c[i][j];
}
}
int main(){Βιβλιοθήκη Baidu
ifstream fin("input.txt",ios::in);
fin>>n>>m>>d;
for(int i=1;i<=n;i++){
cout<<sum<<endl;
fout<<sum<<endl;
system("pause"); fout.close();
return 0;
}
5-13
问题描述:
设有n件工作分配给n个人。为第i个人分配工作j所需的费用为c[i][j]。试设计一个算法,计算最佳工作分配方案,为每一个人都分配1件不同的工作,并使总费用达到最小。
Output
将计算的最小重量及每个部件的供应商输出到文件output.txt
Sample Input
3 3 41 2 33 2 12 2 21 2 33 2 12 2 2
Sample Output
4
1 3 1
#include<iostream>
#include<fstream>
#include <stdio.h>
fout<<cost<<endl;
system("pause");
fout.close();
return 0;
}
for(int j=1;j<=m;j++)
fin>>c[i][j];
sum+=c[i][1];
}
for(int k=1;k<=n;k++)
for(int j=1;j<=m;j++)
fin>>w[k][j];
backtrack(1);
ofstream fout("output.txt",ios::out);
算法设计:设计一个算法,对于给定的工作费用,计算最佳工作分配方案,使总费用达到最小。
数据输入:由文件input.txt给出输入数据,第一行有一个正整数n(1<=n<=20)。接下来的n行,每行n个数,表示工作费用。
结果输出:将计算的最小总费用输出到文件output.txt
样例分析:
3
10 2 3
2 3 4
3 4 5
输出:9
#include<iostream>
#include<fstream>
#include <stdio.h>
using namespace std;
int n,cost=0;
int x[100],c[100][100];
void work(int i,int count){
if(i>n && count<cost){
cost = count;
return ;
}
if(count<cost)
for(int j=1;j<=n;j++)
if(x[j] == 0){
x[j] = 1;
work(i+1,count+c[i][j]);
x[j] = 0;
}
}
int main(){
ifstream fin("input.txt",ios::in);
using namespace std;
int n,m,d,cp=0,cw=0,sum=0;
int c[N][N],w[N][N];
void backtrack(int i){
if(i>n){
if(cw<sum)
sum = cw;
return ;
}
for(int j=1;j<=m;j++){
算法设计与分析第三次作业
计科三班康玥20110801330
5-3
设某一机器由n个部件组成,每一种部件都可以从m个不同的供应商处购得。设wi,j是从供应商j处购得的部件i的重量,ci,j是相应的价格。试设计一个算法,给出总价格不超过c的最小重量机器设计。
Input
由文件input.txt给出输入数据。每组测试数据第一行有3个正整数n,m和d。接下来的2n行,每行m个数。前n行是ci,j,后n行是wi,j。
fin>>n;
for(int i=1;i<=n;i++){
for(int j=1;j<=n;j++){
fin>>c[i][j];
x[j] = 0;
}
cost+=c[i][i];
}
work(1,0);
ofstream fout("output.txt",ios::out);
cout<<cost<<endl;
cw+=w[i][j];
cp+=c[i][j];
if(cw<sum && cp<=d)
backtrack(i+1);
cw-=w[i][j];
cp-=c[i][j];
}
}
int main(){Βιβλιοθήκη Baidu
ifstream fin("input.txt",ios::in);
fin>>n>>m>>d;
for(int i=1;i<=n;i++){
cout<<sum<<endl;
fout<<sum<<endl;
system("pause"); fout.close();
return 0;
}
5-13
问题描述:
设有n件工作分配给n个人。为第i个人分配工作j所需的费用为c[i][j]。试设计一个算法,计算最佳工作分配方案,为每一个人都分配1件不同的工作,并使总费用达到最小。
Output
将计算的最小重量及每个部件的供应商输出到文件output.txt
Sample Input
3 3 41 2 33 2 12 2 21 2 33 2 12 2 2
Sample Output
4
1 3 1
#include<iostream>
#include<fstream>
#include <stdio.h>
fout<<cost<<endl;
system("pause");
fout.close();
return 0;
}
for(int j=1;j<=m;j++)
fin>>c[i][j];
sum+=c[i][1];
}
for(int k=1;k<=n;k++)
for(int j=1;j<=m;j++)
fin>>w[k][j];
backtrack(1);
ofstream fout("output.txt",ios::out);
算法设计:设计一个算法,对于给定的工作费用,计算最佳工作分配方案,使总费用达到最小。
数据输入:由文件input.txt给出输入数据,第一行有一个正整数n(1<=n<=20)。接下来的n行,每行n个数,表示工作费用。
结果输出:将计算的最小总费用输出到文件output.txt
样例分析:
3
10 2 3
2 3 4
3 4 5
输出:9
#include<iostream>
#include<fstream>
#include <stdio.h>
using namespace std;
int n,cost=0;
int x[100],c[100][100];
void work(int i,int count){
if(i>n && count<cost){
cost = count;
return ;
}
if(count<cost)
for(int j=1;j<=n;j++)
if(x[j] == 0){
x[j] = 1;
work(i+1,count+c[i][j]);
x[j] = 0;
}
}
int main(){
ifstream fin("input.txt",ios::in);