首页 > 其他 > 详细

toj 2829 cow counting

时间:2015-04-16 23:29:37      阅读:292      评论:0      收藏:0      [点我收藏+]

一开始想多了,以为应该做个数位dp的,后来想了想也不过100W的数据,直接暴力好像也不慢,于是暴力就过了,还挺快。

 1 #include <iostream>
 2 using namespace std;
 3 
 4 bool judge( int x, int d )
 5 {
 6     while ( x )
 7     {
 8         int r = x % 10;
 9         if ( r == d ) return false;
10         x = x / 10;
11     }
12     return true;
13 }
14 
15 int main ()
16 {
17     int n, d;
18     while ( cin >> n >> d )
19     {
20         int cnt = 1;
21         for ( int i = 1; i <= n; i++ )
22         {
23             while ( !judge( cnt, d ) )
24             {
25                 cnt++;
26             }
27             cnt++;
28         }
29         cout << cnt - 1 << endl;
30     }
31     return 0;
32 }

toj 2829 cow counting

原文:http://www.cnblogs.com/huoxiayu/p/4433409.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!