C - たくさんの数式 / Many Formulas(位运算)

题目链接:https://atcoder.jp/contests/arc061/tasks/arc061_a

Problem Statement

You are given a string SS consisting of digits between 1 and 9, inclusive. You can insert the letter + into some of the positions (possibly none) between two letters in this string. Here, + must not occur consecutively after insertion.

All strings that can be obtained in this way can be evaluated as formulas.

Evaluate all possible formulas, and print the sum of the results.

Constraints

  • 1≤|S|≤101≤|S|≤10
  • All letters in SS are digits between 1 and 9, inclusive.

Input

The input is given from Standard Input in the following format:

SS

Output

Print the sum of the evaluated value over all possible formulas.


Sample Input 1 Copy

Copy

125

Sample Output 1 Copy

Copy

176

There are 44 formulas that can be obtained: 1251+2512+5 and 1+2+5. When each formula is evaluated,

  • 125125
  • 1+25=261+25=26
  • 12+5=1712+5=17
  • 1+2+5=81+2+5=8

Thus, the sum is 125+26+17+8=176125+26+17+8=176.


Sample Input 2 Copy

Copy

9999999999

Sample Output 2 Copy

Copy

12656242944

题意:
给你一个字符串(每位由0-9组成)你可以添加‘+’号问你所有可能运算的结果。

比如:125有:
     125

1+25=26

12+5=17

1+2+5=8

最终结果为125+26+17+8=176;

思路:

用二进制来表示添加+,比如‘01’为1+25,这里是反着来的。

代码:
 

#include<bits/stdc++.h>
#define ll long long
using namespace std;
char s[20];
int main()
{
    scanf("%s",&s);
    int n=strlen(s);
    int w=1<<(n-1);
    ll sum=0;
    for(int i=0;i<w;i++)
    {
         ll t=s[0]-'0';
        for(int j=0;j<n;j++)
        {
           if(i&1<<j||j==n-1)//i的j+1位为1或到了最后。
           {
               sum+=t;
               t=0;
               if(j==n-1)break;
           }
            t=t*10+s[j+1]-'0';
        }
    }
    cout<<sum<<endl;
}

 

     

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值