-
Notifications
You must be signed in to change notification settings - Fork 7
/
LightOj 1032.cpp
206 lines (185 loc) · 3.66 KB
/
LightOj 1032.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
// Problem name : 1032 - Fast Bit Calculations
// Algorithm : Digit DP
// Contest/Practice : Off line practice
// Source : Light Oj
// Comment :
// Date : 26-Aug-14
#include <vector>
#include <list>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <stack>
#include <bitset>
#include <algorithm>
#include <functional>
#include <numeric>
#include <utility>
#include <sstream>
#include <iostream>
#include <iomanip>
#include <cstdio>
#include <cmath>
#include <cstdlib>
#include <ctime>
#include<assert.h>
#define pause system("pause")
#define FOR(s,e,inc) for(int i=s;i<=e;i+=inc)
#define mod 1000000007
#define inf 1<<30
#define pb push_back
#define ppb pop_back
#define mp make_pair
#define F first
#define S second
#define sz(x) ((int)x.size())
#define sqr(x) ( (x)* (x) )
#define eps 1e-9
#define gcd(x,y) __gcd(x,y)
#define on(x,w) x=x|(1<<w)
#define check(x,w) (x&(1<<w))==(1<<w)?true:false
#define all(x) (x).begin(),(x).end()
#define pf printf
typedef long long ll;
typedef unsigned long long ull;
using namespace std;
template<class T>
inline T mod_v(T num)
{
return (num%mod+mod)%mod;
}
template<class T>
inline void memset1(vector<T>&v,int s,T value)
{
for(int i=0;i<s;i++)
v[i]=value;
}
template<class T>
inline void memset2(vector<vector<T> >&v,int s1,int s2,T value)
{
for(int i=0;i<s1;i++)
for(int j=0;j<s2;j++)
v[i][j]=value;
}
template<class T>
T fast_pow(T n , T p)
{
if(p==1) return n;
if(p%2)
{
int g=mod_v ( mod_v(n) * mod_v(fast_pow(n,p-1)) );
return g;
}
else
{
int g=fast_pow(n,p/2);
g=mod_v( mod_v(g) * mod_v(g) ) ;
return g;
}
}
template<class T>
inline T modInverse(T n)
{
return fast_pow(n,mod-2);
}
#ifndef ONLINE_JUDGE
# define print(x) cout<<x<<endl;
#else if
# define print(x) 0;
#endif
//.......Code start from here ! .......
class nod
{
public:
ll path,c;
void set(ll path,ll c)
{
this->path=path;
this->c=c;
}
};
int num;
nod my;
vector<char>binary;
nod dp[50][50][50];
inline void converToBinary()
{
int x=num;
binary.clear();
while(x>0)
{
char c=(x%2)==0?'0':'1';
binary.push_back(c);
x/=2;
}
reverse(all(binary));
}
nod re(int idx,bool near,bool got)
{
if(idx>=sz(binary))
{
my.set(1,0);
return my;
}
if(dp[idx][near][got].c!=-1) return dp[idx][near][got];
nod r1,r2;
if(got)
{
if(binary[idx]=='1')
{
r1=re(idx+1,true,got);
if(near)
r1.c+=r1.path;
r2=re(idx+1,false,got);
r1.path+=r2.path;
r1.c+=r2.c;
}
else
{
r1=re(idx+1,true,got);
if(near)
r1.c+=r1.path;
r2=re(idx+1,false,got);
r1.path+=r2.path;
r1.c+=r2.c;
}
}
else
{
if(binary[idx]=='1')
{
r1=re(idx+1,true,got);
if(near)
r1.c+=r1.path;
r2=re(idx+1,false,true);
r1.c+=r2.c;
r1.path+=r2.path;
}
else
{
r1=re(idx+1,false,got);
}
}
return dp[idx][near][got]=r1;
}
int main()
{
int t,tcase;
while(scanf("%d",&t)==1)
{
tcase=1;
while(t--)
{
for(int i=0;i<50;i++)
for(int j=0;j<50;j++)
for(int k=0;k<50;k++)
dp[i][j][k].set(-1,-1);
scanf("%d",&num);
converToBinary();
nod result=re(0,false,false);
pf("Case %d: %lld\n",tcase++,result.c);
}
}
return 0;
}