UVa725 Division

给一个n,求所有相除正好等于n的五位整数,使它们的数位加起来刚好用尽0~9十个数字。按字典序输出。

分子可由分母算出,所以利用DFS从小到大穷举分母,在分子达到6位时终止枚举。


#include <iostream>
#include <cstring>
using namespace std;
char s[5];
bool taken[10];
bool exceed, ok;
int n;

bool check(int t) {
    bool tk[10];
    memcpy(tk, taken, sizeof(tk));
    for(int i = 0; i < 5; i++) {
        if(tk[t % 10])
            return false;
        tk[t % 10] = true;
        t /= 10;
    }
    return true;
}

void dfs(int d) {
    if(d == 5) {
        int t = stoi(s);
        if(t * n > 98765) {
            exceed = true; return;
        }
        if(check(t * n)) {
            ok = true;
            printf("%05d / %05d = %d\n", t * n, t, n);
        }
        return;
    }
    for(int i = 0; i < 10 && !exceed; i++) {
        if(taken[i]) continue;
        taken[i] = true; s[d] = '0' + i;
        dfs(d + 1);
        taken[i] = false;
    }
}

int main() {
    int kase = 0;
    while(cin >> n && n) {
        if(kase++) cout << endl;
        ok = exceed = false;
        dfs(0);
        if(!ok) cout << "There are no solutions for " << n << ".\n";
    }
    return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值