Find the Multiply (BFS)

#include<bits/stdc++.h>
using namespace std;

void BFS(int n){
    queue<long long> q;
    q.push(1);
    while(!q.empty()){
        long long current=q.front();
        q.pop();
        if(current%n==0){
            cout<<current<<endl;
            break;
        }
        q.push(10*current);
        q.push(10*current+1);
    }
    return ;
}

int main(){
    int n;
    while(cin>>n){
        if(n==0){
            break;
        }
        BFS(n);
    }
    return 0;
}
全部评论
我总是觉得bfs和dfs好难啊
点赞 回复 分享
发布于 2022-10-13 23:14 山西

相关推荐

评论
1
收藏
分享
牛客网
牛客企业服务