10 2018 档案

摘要:A(HDU6124) #include <bits/stdc++.h> using namespace std ; int INPUT ( ) { int x=0,f=1;char ch=getchar(); while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getc 阅读全文
posted @ 2018-10-30 22:44 SHHHS 阅读(187) 评论(0) 推荐(0)
摘要:1 #include <bits/stdc++.h> using namespace std ; struct bigInt { int num[ 2000 ] ; int size ; static const int maxN = 2000 ; private : void Init ( ) { 阅读全文
posted @ 2018-10-28 18:57 SHHHS 阅读(249) 评论(0) 推荐(0)
摘要:开始存模板 快速排序 #include <cstdio> #include <algorithm> #include <iostream> using namespace std ; typedef long long ll ; const int maxN = 100010 ; int a[ ma 阅读全文
posted @ 2018-10-26 22:32 SHHHS 阅读(890) 评论(0) 推荐(0)