H-08

来源:互联网 发布:ibeacon 三边定位算法 编辑:程序博客网 时间:2024/05/16 08:43

Description

Given a positive integer n, write a program to find out a nonzero multiple m of n whose decimal representation contains only the digits 0 and 1. You may assume that n is not greater than 200 and there is a corresponding m containing no more than 100 decimal digits.

Input

The input file may contain multiple test cases. Each line contains a value of n (1 <= n <= 200). A line containing a zero terminates the input.

Output

For each value of n in the input print a line containing the corresponding value of m. The decimal representation of m must not contain more than 100 digits. If there are multiple solutions for a given value of n, any one of them is acceptable.

Sample Input

26190

Sample Output

10100100100100100100111111111111111111
题意:
十进制数每位上只出现0或1,找到是n的倍数的数,最多100位

分析:

用深搜到100超时,直接搜到20位就行

代码:

[cpp] view plain copy
  1. #include<iostream>  
  2. using namespace std;  
  3. long long a,b;  
  4. int i,t,n;  
  5. int s,z;  
  6. void vp(long long b,int t,int n)  
  7. {  
  8. if (t<20&&!s)  
  9. {if (b%n==0) {  
  10.     s=1;cout<<b<<endl;  
  11.     return ;}  
  12. else {  
  13.     vp(b*10,t+1,n);  
  14.     vp(b*10+1,t+1,n);  
  15.     }  
  16. }  
  17. }  
  18. int main()  
  19. {  
  20.     while (cin>>n&&n)  
  21.     {  
  22.         s=0;  
  23.         vp(1,1,n);  
  24.     }  
  25. }  
感受:

这是我做的第一个 深搜,一开始的时候就是懵,完全不知道用什么,可是做出来就感觉会了,不难

原创粉丝点击