zoj1530 bfs

 1 //Accepted  zoj1530  270ms 40008KB
 2 #include <cstdio>
 3 #include <cstring>
 4 #include <iostream>
 5 #include <queue>
 6 using namespace std;
 7 const int imax_n = 205;
 8 string a[imax_n];
 9 int vis[imax_n];
10 queue<int > q;
11 queue<string >sq;
12 void bfs(int n)
13 {
14     if (a[n]!="") return ;
15     while (!q.empty()) q.pop();
16     while (!sq.empty()) sq.pop();
17     q.push(1);
18     sq.push("1");
19     while (1)
20     {
21         int x=q.front();
22         q.pop();
23         string s=sq.front();
24         sq.pop();
25         if (x%n==0)
26         {
27             a[n]=s;
28             return ;
29         }
30         q.push(10*x%n);
31         sq.push(s+"0");
32         q.push((10*x+1)%n);
33         sq.push(s+"1");
34     }
35 }
36 int main()
37 {
38     int n;
39     while (scanf("%d",&n),n)
40     {
41         bfs(n);
42         cout<<a[n]<<endl;
43     }
44     return 0;
45 }

 1 //Accepted  zoj1530 110ms 4544kB
 2 #include <cstdio>
 3 #include <cstring>
 4 #include <iostream>
 5 #include <queue>
 6 using namespace std;
 7 const int imax_n = 205;
 8 long long a[imax_n];
 9 queue<long long > q;
10 void bfs()
11 {
12     int cnt=0;
13     while (!q.empty()) q.pop();
14     q.push(1);
15     while (1)
16     {
17         long long x=q.front();
18         q.pop();
19         for (int i=1;i<=200;i++)
20         if (a[i]==0 && x%i==0)
21         {
22             a[i]=x;
23             cnt++;
24         }
25         if (cnt>=200) return ;
26         q.push(10*x);
27         q.push(10*x+1);
28     }
29 }
30 int main()
31 {
32     bfs();
33     int n;
34     //for (int i=1;i<=200;i++)
35     //{
36      //   printf("a[%d]=%lld\n",i,a[i]);
37     //}
38     while (scanf("%d",&n),n)
39     {
40         printf("%lld\n",a[n]);
41     }
42     return 0;
43 }

时间: 2024-11-12 22:31:10

zoj1530 bfs的相关文章

UVALive2701 UVA1189 POJ1426 ZOJ1530 Find The Multiple

Regionals 2002 >> Asia - Dhaka 问题链接:UVALive2701 UVA1189 POJ1426 ZOJ1530 Find The Multiple. 问题简述:输入若干个正整数n,n=0则结束.对于输入的n,输出正整数m,m是n的倍数并且只包含数字0和1. 问题分析:所求的值不是很大的话,用类型unsigned long long就可以了.开始时,先用1试探,然后是10和11,然后是100.101.110和111,位数逐步增加直到找到能被n整除的数为止. 这个程

[hdu 2102]bfs+注意INF

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2102 感觉这个题非常水,结果一直WA,最后发现居然是0x3f3f3f3f不够大导致的--把INF改成INF+INF就过了. #include<bits/stdc++.h> using namespace std; bool vis[2][15][15]; char s[2][15][15]; const int INF=0x3f3f3f3f; const int fx[]={0,0,1,-1};

BFS+康托展开(洛谷1379 八数码难题)

在3×3的棋盘上,摆有八个棋子,每个棋子上标有1至8的某一数字.棋盘中留有一个空格,空格用0来表示.空格周围的棋子可以移到空格中.要求解的问题是:给出一种初始布局(初始状态)和目标布局(为了使题目简单,设目标状态为123804765),找到一种最少步骤的移动方法,实现从初始布局到目标布局的转变. 输入格式: 输入初试状态,一行九个数字,空格用0表示 输出格式: 只有一行,该行只有一个数字,表示从初始状态到目标状态需要的最少移动次数(测试数据中无特殊无法到达目标状态数据) 输入样例#1: 2831

Sicily 1444: Prime Path(BFS)

题意为给出两个四位素数A.B,每次只能对A的某一位数字进行修改,使它成为另一个四位的素数,问最少经过多少操作,能使A变到B.可以直接进行BFS搜索 1 #include<bits/stdc++.h> 2 using namespace std; 3 4 bool isPrime(int n){//素数判断 5 if(n == 2 || n == 3) return true; 6 else{ 7 int k = sqrt(n) + 1; 8 for(int i = 2; i < k; i

HDU 5925 Coconuts 【离散化+BFS】 (2016CCPC东北地区大学生程序设计竞赛)

Coconuts Time Limit: 9000/4500 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)Total Submission(s): 524    Accepted Submission(s): 151 Problem Description TanBig, a friend of Mr. Frog, likes eating very much, so he always has dreams abou

POJ3967Ideal Path[反向bfs 层次图]

Ideal Path Time Limit: 10000MS   Memory Limit: 65536K Total Submissions: 1754   Accepted: 240 Description New labyrinth attraction is open in New Lostland amusement park. The labyrinth consists of n rooms connected by m passages. Each passage is colo

胜利大逃亡(续)(状态压缩bfs)

胜利大逃亡(续) Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 7357    Accepted Submission(s): 2552 Problem Description Ignatius再次被魔王抓走了(搞不懂他咋这么讨魔王喜欢)……这次魔王汲取了上次的教训,把Ignatius关在一个n*m的地牢里,并在地牢的某些地方安装了带

邻接表实现Dijkstra算法以及DFS与BFS算法

//============================================================================ // Name : ListDijkstra.cpp // Author : fffff // Version : // Copyright : Your copyright notice // Description : Hello World in C++, Ansi-style //==========================

图的两种遍历-DFS&amp;BFS

DFS和BFS在图中的应用: 图连通性判定:路径的存在性:图中是否存在环:求图的最小生成树:求图的关键路径:求图的拓扑排序. DFS:简单的说,先一直往深处走,直到不能再深了,再从另一条路开始往深处走,直到所有路都走完: struct node { int next; //E[i].next指向图中与i同父的下一个结点 int to; //E[i].to指向图中i的子结点 }E[110]; int N; int fa[110]; //记录各点的父结点 bool vis[110]; //记录这个点