P1618 三连击(升级版)

本文介绍了一种通过全排列解决特定数学问题的方法:给定9个数字,将其分为三组形成三个三位数,并判断这些数字是否能按照指定的比例关系进行分组。文章提供了两种实现思路,一种是使用深度优先搜索(DFS),另一种是利用STL中的next_permutation函数。
摘要由CSDN通过智能技术生成

题目描述
将 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;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值