题目描述
将 1, 2,\ldots, 91,2,…,9 共 99 个数分成三组,分别组成三个三位数,且使这三个三位数的比例是 A:B:CA:B:C,试求出所有满足条件的三个三位数,若无解,输出 No!!!。
//感谢黄小U饮品完善题意
输入格式
三个数,A,B,CA,B,C。
输出格式
若干行,每行 33 个数字。按照每行第一个数字升序排列。
输入 #1
1 2 3
192 384 576
219 438 657
273 546 819
327 654 981
全排列问题,满足一定条件输出直接使用dfs
#include <iostream>
#include <algorithm>
#include <stdio.h>
#include <bits/stdc++.h>
using namespace std;
int a, b, c;
bool vis[10];
int map_[10] = {2, 1, 9, 4, 3, 8, 6, 5, 7}, ans = false;
bool check()
{
int ta = map_[0] * 100 + map_[1] * 10 + map_[2];
int tb = map_[3] * 100 + map_[4] * 10 + map_[5];
int tc = map_[6] * 100 + map_[7] * 10 + map_[8];
return ta*b==tb*a&&ta*c==tc*a;
}
void dfs(int step)
{
if (step == 9 && check())
{
for (int j = 0, cnt = 1; j < 9; j++, cnt++)//这里的cnt是直接
//用来控制这个格式的
{
cout << map_[j];
if (cnt % 3 == 0 && cnt < 9)
{
cout << " ";
}
}
ans = true;
cout << endl;
return;
}
for (int i = 1; i <= 9; i++)
{
if (!vis[i])
{
map_[step] = i;
vis[i] = true;
dfs(step+1);
vis[i] = false;
}
}
return;
}
int main()
{
cin >> a >> b >> c;
dfs(0);
if (!ans)
cout << "No!!!";
return 0;
}
用个next_permutation求出所有的组合满足条件的直接输出,
想不到这种方法还用时比dfs少的stl牛逼
#include <iostream>
#include <algorithm>
#include <stdio.h>
#include <bits/stdc++.h>
using namespace std;
int a, b, c;
int map_[10]= {1,2,3,4,5,6,7,8,9}, ans = false;
bool check()
{
int ta = map_[0] * 100 + map_[1] * 10 + map_[2];
int tb = map_[3] * 100 + map_[4] * 10 + map_[5];
int tc = map_[6] * 100 + map_[7] * 10 + map_[8];
return ta * b == tb * a && ta * c == tc * a;
}
int main()
{
cin >> a >> b >> c;
do
{
if (check())
{
for (int j = 0, cnt = 1; j < 9; j++, cnt++)
{
cout << map_[j];
if (cnt % 3 == 0 && cnt < 9)
{
cout << " ";
}
}
ans = true;
cout<<endl;
}
} while (next_permutation(map_, map_ + 9));
if (!ans)
cout << "No!!!";
return 0;
}