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

toj 2829 cow counting

时间:2015-04-16 23:30:17      阅读:148      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!