码迷,mamicode.com
首页 > 其他好文 > 详细

[CF1070A]Find a Number_bfs

时间:2019-10-28 18:49:52      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:void   target   链接   题目   put   ems   def   com   ble   

Find a Number

题目链接http://codeforces.com/problemset/problem/1070/A

数据范围:略。


题解

因为$d$和$s$比较小可以搜。

这就很$gay$了...我根本没想到可以宽搜。

想到搜索就非常简单了,从小到大枚举就好了。

代码

#include <bits/stdc++.h>

#define inf 0x3f3f3f3f 

#define D 510 

#define S 5010 

using namespace std;

int d, s;

bool vis[D][S];

queue <pair<int, int> >q;

pair<pair<int, int>, int> p[D][S];

void bfs() {
    vis[0][0] = true;
    q.push(make_pair(0, 0));
    while (!q.empty()) {
        int x = q.front().first, y = q.front().second;
        q.pop();
        for (int i = 0; i < 10; i ++ ) {
            int x_ = (x * 10 + i) % d, y_ = y + i;
            if (y_ <= s && !vis[x_][y_]) {
                vis[x_][y_] = true;
                p[x_][y_] = make_pair(make_pair(x, y), i);
                q.push(make_pair(x_, y_));
            }
        }
    }
}

void output(int x, int y) {
    if (!x && !y) {
        return;
    }
    output(p[x][y].first.first, p[x][y].first.second);
    putchar(‘0‘ + p[x][y].second);
}

int main() {
    cin >> d >> s ;
    bfs();
    if (!vis[0][s]) {
        puts("-1");
    }
    else {
        output(0, s);
    }
    return 0;
}

[CF1070A]Find a Number_bfs

标签:void   target   链接   题目   put   ems   def   com   ble   

原文地址:https://www.cnblogs.com/ShuraK/p/11754221.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!