1. 程式人生 > 實用技巧 >牛客網Groundhog and 2-Power Representation

牛客網Groundhog and 2-Power Representation

連結:https://ac.nowcoder.com/acm/contest/5674/A

來源:牛客網

題目描述

輸入計算式,求解。

其中 2(x) 表示 2 的 x 次方,式中每一項都對應著答案在二進位制表示下的數位為1的位。

比如說:

1315=210+28+25+2+1=2(2(2+2(0))+2)+2(2(2+2(0)))+2(2(2)+2(0))+2+2(0).

輸入描述:

Given a string, indicating the power representation.

輸出描述:

Output the original number.

輸入:

2(2(2+2(0))+2)+2(2(2+2(0)))+2(2(2)+2(0))+2+2(0)

輸出:

1315

備註:

The range of answers :[10,10180][10,10^{180}][10,10180],and the length of the input data shall not exceed 20000{20000}20000.

  • 若下一個字元是′(′ ,則進行遞迴

#include<bits/stdc++.h>
using namespace std;
#define ll long long
char a[20010];
ll sum;
int ans[205],anslen;
void aaa(int b[],int
len){ anslen=max(anslen,len); for(int i=1;i<=anslen;++i){ ans[i]+=b[i]; ans[i+1]+=ans[i]/10; ans[i]%=10; } while(ans[anslen+1]) ++anslen; } int b[1005]; void ksm(ll c){ memset(b,0,sizeof(b)); b[1]=1; int k=1; for(int i=1;i<=c;++i){ int
x=0; for(int j=1;j<=k;++j){ b[j]=b[j]*2+x; x=b[j]/10; b[j]%=10; if(x&&j==k) ++k; } } aaa(b,k); } ll ksm1(ll b,ll c) { ll d=1; while(c>0) { if(c&1)d*=b; c>>=1; b*=b; } return d; } int p,k; ll dg(ll x,ll h) { ll q=0;p=0; for(int i=x;i<k;i++) { p=max(p,i); if(a[i]=='(') h++; if(a[i]==')') h--; if(!h){ksm(q);return 0;} if(a[i]==')') return ksm1(2,q); if(a[i]=='2') { if(a[i+1]=='(') q+=dg(i+1,h),i=p; else q+=2; } } } int main() { scanf("%s",a); k=strlen(a); for(int i=0;i<k;i++) if(a[i]=='2') { if(a[i+1]!='('){ memset(b,0,sizeof(b)); b[1]=2; aaa(b,1); } else dg(i+1,0),i=p; } for(int i=anslen;i>=1;i--) printf("%d",ans[i]); }
View Code