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

hdoj 2089 不要62 【打表】

时间:2014-08-19 20:52:15      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:水题

题意:。。

水题

代码:

#include <stdio.h>
#include <string.h>
#include <algorithm>
using namespace std;
int s[10];
int ans[1000005] = {0, 1};
int is(int n){
    //n = 62;
    int pre = 0, cur = 0, i;
    while(n){
        pre = cur;
        cur = n%10;
        n /= 10;
        if(cur == 4||(cur == 6&&pre == 2)) return 1;
    }
    return 0;
}
int f()
{
    int i;
    for(i = 1; i < 1000005; i ++){
        if(is(i)){
            ans[i] = ans[i-1];
        }
        else ans[i] = ans[i-1]+1;
    }
}
int main()
{
    int n, m;
    f();
    while(scanf("%d%d", &n, &m), n, m){
        printf("%d\n", ans[m]-ans[n-1]);
    }
    return 0;
}
题目链接:点击打开链接

hdoj 2089 不要62 【打表】,布布扣,bubuko.com

hdoj 2089 不要62 【打表】

标签:水题

原文地址:http://blog.csdn.net/shengweisong/article/details/38687313

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!