-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbig_integer.cpp
165 lines (165 loc) · 3.63 KB
/
big_integer.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
#include <bits/stdc++.h>
#define mod 1000000007
#define mkp(a,b) make_pair(a,b)
using namespace std;
typedef long l;
typedef long double ld;
typedef pair<l,l> pll;
typedef pair<int,int> pii;
class BigInteger
{
private:
vector<int> v;
void pad(BigInteger &b,int sz)
{
while(b.size()<sz)
{
b.v.emplace_back(0);
}
}
int size()
{
return v.size();
}
public:
BigInteger()= default;
explicit BigInteger(string s)
{
for(int i=s.size()-1;i>=0;--i)
{
v.emplace_back(s[i]-'0');
}
}
BigInteger operator +(BigInteger b)
{
BigInteger res("");
BigInteger tmp=(*this);
pad(b,max(b.size(),tmp.size()));
pad(tmp,max(b.size(),tmp.size()));
// cout<<tmp.to_string()<<" "<<b.to_string()<<endl;
int c=0;
for(int i=0;i<b.size();++i)
{
int sum=b.v[i]+v[i]+c;
if(sum<10)
{
res.v.emplace_back(sum);
c=0;
}
else
{
res.v.emplace_back(sum%10);
c=sum/10;
}
}
if(c!=0)
{
res.v.emplace_back(c);
}
return res;
}
BigInteger operator *(BigInteger b)
{
if(b.size()>this->size())
{
return b*(*this);
}
// cout<<b.to_string()<<endl;
if(b.size()==1)
{
BigInteger final;
int c=0;
for(int i=0;i<this->size();++i)
{
int store=b.v[0]*v[i]+c;
if(store<10)
{
c=0;
final.v.emplace_back(store);
}
else
{
final.v.emplace_back(store%10);
c=store/10;
}
}
if(c!=0)
{
// cout<<"padded";
final.v.emplace_back(c);
}
// cout<<final.to_string()<<endl;
return final;
}
BigInteger res[b.size()];
int max_sz=0;
for(int i=0;i<b.size();++i)
{
string _;
_+=(char)(b.v[i]+'0');
BigInteger tmp(_);
// cout<<tmp.to_string()<<endl;
res[i]=tmp*(*this);
// cout<<res[i].to_string()<<endl;
// break;
for(int j=0;j<i;++j)
{
res[i].v.insert(res[i].v.begin(),0);
}
max_sz=max(max_sz,res[i].size());
}
BigInteger final("");
final.v=vector<int>(max_sz);
for(int i=0;i<b.size();++i)
{
final=final+res[i];
}
return final;
}
string to_string()
{
string s;
for(int i=this->size()-1;i>=0;--i)
{
s+=(char)(v[i]+'0');
}
return s;
}
};
string itos(int num)
{
string s;
while(num!=0)
{
s+=(char)(num%10+'0');
num/=10;
}
reverse(s.begin(),s.end());
return s;
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
BigInteger fact[100];
fact[0]=BigInteger("1");
for(int i=1;i<100;++i)
{
// cout<<itos(i)<<endl;
// cout<<(BigInteger("11")*BigInteger("12")).to_string();
BigInteger tmp(itos(i+1));
// cout<<tmp.to_string()<<endl;
fact[i]=(fact[i-1]*tmp);
// cout<<fact[i].to_string()<<endl;
// break;
}
int t;
cin>>t;
while(t--)
{
int n;
cin>>n;
cout<<fact[n-1].to_string()<<endl;
}
return 0;
}