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

HDU4278 Faulty Odometerd

时间:2017-10-11 11:00:44      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:class   return   div   span   stream   space   +=   using   hdu4278   

开始以为是容斥原理,想着做一下,应该是可以用容斥解决的,有空再过来写一下。题解是进制转换,开始没想到,不过很好理解。

如在10进制里: 1254=  (1*10^3 + 2*10^2 + 5* 10^1+ 4*10^0)

而faulty的大小:1254=  (1* 8^3  +  2* 8^2  +  4* 8^1+  3*8^0)  

当然faulty里面没有3和8所以 0-9分别代表:

int s[10]={0,1,2,3,3,4,5,6,6,7};

 

#include<cstdio>
#include<cstdlib>
#include<iostream>
#include<algorithm>
#include<memory.h>
using namespace std;
#define LL long long 
int s[10]={0,1,2,3,3,4,5,6,6,7};
int main()
{
    LL n;
    int i,j;
    while(~scanf("%lld",&n)&&n)  {
        printf("%lld: ",n);
        LL tmp=1,ans=0;
        while(n){
           ans+=s[n%10]*tmp;
           n/=10;
           tmp*=8;
        }
        printf("%lld\n",ans);
    }
    return 0;
}

 

HDU4278 Faulty Odometerd

标签:class   return   div   span   stream   space   +=   using   hdu4278   

原文地址:http://www.cnblogs.com/hua-dong/p/7648793.html

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