【HDOJ】2451 Simple Addition Expression

递推,但是要注意细节。题目的意思,就是求s(x) = i+(i+1)+(i+2),i<n。该表达中计算过程中CA恒为0(包括中间值)的情况。根据所求可推得。
1-10: 3
1-100: 3*4
1-1000: 3*4*4
1-10000: 3*4*4*4
1-10^n: 3*4^(n-1)。
并且需要注意,一旦发现某一位大于3,则应立即跳出累加的循环。比如,f(133) = 24,f(143) = 24。同时,单独讨论个位的情况。28行的break处理该种情况。

 1 #include <cstdio>
 2 #include <cstring>
 3
 4 __int64 pre[11];
 5 char buf[15];
 6
 7 int main() {
 8     int i, k, len;
 9     __int64 ans;
10
11     pre[0] = 1;
12     pre[1] = 1;
13     for (i=2; i<11; ++i)
14         pre[i] = pre[i-1]<<2;
15
16     while (scanf("%s", buf) != EOF) {
17         len = strlen(buf);
18         ans = 0;
19         for (i=0; i<len; ++i) {
20             k = buf[i] - ‘0‘;
21             if (i == len-1) {
22                 if (k > 3)
23                     ans += 3;
24                 else
25                     ans += k;
26             } else if (k > 3) {
27                 ans += pre[len-i]*3;
28                 break;
29             } else
30                 ans += k*pre[len-i-1]*3;
31         }
32         printf("%I64d\n", ans);
33     }
34
35     return 0;
36 }

【HDOJ】2451 Simple Addition Expression

时间: 2024-10-12 11:04:15

【HDOJ】2451 Simple Addition Expression的相关文章

HDU 2451 Simple Addition Expression(组合数学)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2451 Problem Description A luxury yacht with 100 passengers on board is sailing on the sea in the twilight. The yacht is ablaze with lights and there comes out laughers and singing from the hall where an

HDU 2451 Simple Addition Expression

Simple Addition Expression Time Limit: 5000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 1508    Accepted Submission(s): 576 Problem Description A luxury yacht with 100 passengers on board is sailing on the s

【HDOJ】1341 Simple Computers

注意PC要与31. 1 #include <cstdio> 2 #include <cstring> 3 #include <cstdlib> 4 5 #define MAXN 40 6 #define MAXL 10 7 8 char mem[MAXN][MAXL]; 9 char ans[MAXL]; 10 11 int getv(char s[], int i, int j) { 12 int ret = 0; 13 14 while (i < j) { 1

[数位dp] hdu 2451 Simple Addition Expression

题意:给N,求小于N的数中,三个连续的数相加不进位的数有多少个. 思路:和上题类似,就是不是个位的话,可以放0,1,2,3,个位的话只能放0,1,2. 然后就是边界考虑一下,不能超过当前位. 然后就是边界的判断,不是等于len而是等于当前位. 代码: #include"cstdlib" #include"cstdio" #include"cstring" #include"cmath" #include"queue&

HDU 2451 Simple Addition Expression(找规律,考验智商)

题目 最近比赛的题目好多签到题都是找规律的考验智商的题目啊,,,我怎么越来越笨了,,,, 通过列举,可以发现规律: 从左往右按位扫这个数: 当数的长度大于1时: 当首位大于3时,答案就是4*4*4*……*4*3(即pow(4,后面的长度-1)*3): 否则,则是 首位的数字*4*4*4*……*4*3: 当数的长度为1时,并且之前的(即其他的)都没有进位,则直接判断一下ans要加多少个: #include<stdio.h> #include<string.h> #include<

【HDOJ】1497 Simple Library Management System

链表. 1 #include <cstdio> 2 #include <cstring> 3 #include <cstdlib> 4 5 #define MAXM 1001 6 #define MAXN 100001 7 8 int un[MAXM], ub[MAXM]; 9 int v[MAXN]; 10 int next[MAXN]; 11 12 int comp(const void *a, const void *b) { 13 return *(int *)

【HDOJ】2424 Gary&#39;s Calculator

大数乘法加法,直接java A了. 1 import java.util.Scanner; 2 import java.math.BigInteger; 3 4 public class Main { 5 public static void main(String[] args) { 6 Scanner cin = new Scanner(System.in); 7 int n; 8 int i, j, k, tmp; 9 int top; 10 boolean flag; 11 int t

【HDOJ】4956 Poor Hanamichi

基本数学题一道,看错位数,当成大数减做了,而且还把方向看反了.所求为最接近l的值. 1 #include <cstdio> 2 3 int f(__int64 x) { 4 int i, sum; 5 6 i = sum = 0; 7 while (x) { 8 if (i & 1) 9 sum -= x%10; 10 else 11 sum += x%10; 12 ++i; 13 x/=10; 14 } 15 return sum; 16 } 17 18 int main() { 1

【HDOJ】1099 Lottery

题意超难懂,实则一道概率论的题目.求P(n).P(n) = n*(1+1/2+1/3+1/4+...+1/n).结果如果可以除尽则表示为整数,否则表示为假分数. 1 #include <cstdio> 2 #include <cstring> 3 4 #define MAXN 25 5 6 __int64 buf[MAXN]; 7 8 __int64 gcd(__int64 a, __int64 b) { 9 if (b == 0) return a; 10 else return