高精度
文章平均质量分 66
renxinyu2002
虽然我们走不了最短路,但图依然是连通图
展开
-
hanoi双塔问题(高精乘)
#include #include #include #include using namespace std; const int maxn=210; int f[maxn][maxn],n,siz[maxn]; int main(){ scanf("%d",&n); f[1][1]=2; siz[1]=1; for(int i=2;i for(int j=1;j原创 2017-10-27 09:21:49 · 605 阅读 · 0 评论 -
noip2012国王游戏
#include #include #include #include #include using namespace std; const int maxn=1010; int n,now[maxn],ans[maxn],cur[maxn]; struct node{ int a,b; }s[maxn]; void ch(int x){ for(i原创 2017-10-31 20:24:08 · 283 阅读 · 0 评论 -
高精度模板(乘法)
#include #include #include #include using namespace std; const int maxn=2000+10; char a[maxn],b[maxn],c[maxn]; int x[maxn],y[maxn],z[maxn]; int main(){ scanf("%s%s",a,b); int l1=st原创 2017-11-03 19:40:22 · 251 阅读 · 0 评论 -
高精度模板(减法)
#include #include #include #include using namespace std; const int maxn=10010; char a[maxn],b[maxn],c[maxn]; int x[maxn],y[maxn],z[maxn],t[maxn]; int main(){ scanf("%s%s",a,b); in原创 2017-11-03 20:01:43 · 204 阅读 · 0 评论 -
高精度(加法)
#include #include #include #include using namespace std; const int maxn=510; char a[maxn],b[maxn]; int x[maxn],y[maxn],z[maxn]; int main(){ memset(z,0,sizeof(z)); memset(x,0,sizeof(原创 2017-11-03 20:22:01 · 204 阅读 · 0 评论