URAL - 1153 Supercomputer 大数开方
题意:给定m,m = n * (n+1) / 2,计算n值。
思路:n = SQRT(m*2)
注意m很大,需要自己实现大数开方。我用的是自己写的大数模板:大数模板
AC代码
- #include <cstdio>
- #include <cmath>
- #include <algorithm>
- #include <cstring>
- #include <utility>
- #include <string>
- #include <iostream>
- #include <map>
- #include <set>
- #include <vector>
- #include <queue>
- #include <stack>
- using namespace std;
- #define eps 1e-10
- #define inf 0x3f3f3f3f
- #define PI pair<int, int>
- typedef long long LL;
- const int maxn = 1e4 + 5;
- struct BigInteger {
- vector<int>s; //12345--54321
- void DealZero() { //处理前导0
- for(int i = s.size() - 1; i > 0; --i){
- if(s[i] == 0) s.pop_back();
- else break;
- }
- }
- BigInteger operator = (long long num) { // 赋值运算符
- s.clear();
- vector<int>tmp;
- do{
- s.push_back(num % 10);
- num /= 10;
- }while(num);
- return *this;
- }
- BigInteger operator = (const string& str) { // 赋值运算符
- s.clear();
- for(int i = str.size() - 1; i >= 0; --i) s.push_back(str[i] - '0');
- this->DealZero();
- return *this;
- }
- BigInteger operator = (const char *a) {
- int n = strlen(a);
- }
- BigInteger operator + (const BigInteger& b) const {
- BigInteger c;
- c.s.clear();
- int len1 = s.size(), len2 = b.s.size();
- for(int i = 0, g = 0; g > 0 || i < len1 || i < len2; ++i) {
- int x = g;
- if(i < len1) x += s[i];
- if(i < len2) x += b.s[i];
- c.s.push_back(x % 10);
- g = x / 10;
- }
- return c;
- }
- //大数减小数
- BigInteger operator - (const BigInteger& b) const {
- BigInteger c;
- c.s.clear();
- int len1 = s.size(), len2 = b.s.size();
- for(int i = 0, g = 0; i < len1 || i < len2; ++i) {
- int x = g;
- if(i < len1) x += s[i];
- g = 0;
- if(i < len2) x -= b.s[i];
- if(x < 0) {
- g = -1; //借位
- x += 10;
- }
- c.s.push_back(x);
- }
- c.DealZero();
- return c;
- }
- BigInteger operator * (const BigInteger& b) const {
- BigInteger c, tmp;
- c.s.clear();
- int len1 = s.size(), len2 = b.s.size();
- for(int i = 0; i < len1; ++i) {
- tmp.s.clear();tmp;
- int num = i;
- while(num--) tmp.s.push_back(0);
- int g = 0;
- for(int j = 0; j < len2; ++j) {
- int x = s[i] * b.s[j] + g;
- tmp.s.push_back(x % 10);
- g = x / 10;
- }
- if(g > 0) tmp.s.push_back(g);
- c = c + tmp;
- }
- c.DealZero();
- return c;
- }
- //单精度除法
- BigInteger operator / (const int b) const {
- BigInteger c, tmp;
- c.s.clear();
- int len = s.size();
- int div = 0;
- for(int i = len - 1; i >= 0; --i) {
- div = div * 10 + s[i];
- while(div < b && i > 0) {
- div = div * 10 + s[--i];
- }
- tmp.s.push_back(div / b);
- div %= b;
- }
- for(int i = tmp.s.size() - 1; i >= 0; --i) c.s.push_back(tmp.s[i]);
- c.DealZero();
- return c;
- }
- bool operator < (const BigInteger& b) const {
- int len1 = s.size(), len2 = b.s.size();
- if(len1 != len2) return len1 < len2;
- for(int i = len1 - 1; i >= 0; --i) {
- if(s[i] != b.s[i]) return s[i] < b.s[i];
- }
- return false; //相等
- }
- bool operator <= (const BigInteger& b) const {
- return !(b < *this);
- }
- string ToStr() {
- string ans;
- ans.clear();
- for(int i = s.size()-1; i >= 0; --i)
- ans.push_back(s[i] + '0');
- return ans;
- }
- //大数开方
- /**大数开方用法说明:
- 字符串必须从第二个位置开始输入,且s[0] = '0'
- scanf("%s", s+1);
- */
- BigInteger SQRT(char *s) {
- string p = "";
- s[0]='0';
- if(strlen(s)%2 == 1)
- work(p, 2, s+1, 0);
- else
- work(p, 2, s, 0);
- BigInteger c;
- c.s.clear();
- c = p;
- return c;
- }
- //开方准备
- //------------------------------------
- int l;
- int work(string &p, int o,char *O,int I){
- char c, *D=O ;
- if(o>0)
- {
- for(l=0;D[l];D[l++]-=10)
- {
- D[l++]-=120;
- D[l]-=110;
- while(!work(p, 0, O, l))
- D[l]+=20;
- p += (char)((D[l]+1032)/20);
- }
- }
- else
- {
- c=o+(D[I]+82)%10-(I>l/2)*(D[I-l+I]+72)/10-9;
- D[I]+=I<0 ? 0 : !(o=work(p, c/10,O,I-1))*((c+999)%10-(D[I]+92)%10);
- }
- return o;
- }
- //-----------------------------------------
- };
- ostream& operator << (ostream &out, const BigInteger& x) {
- for(int i = x.s.size() - 1; i >= 0; --i)
- out << x.s[i];
- return out;
- }
- istream& operator >> (istream &in, BigInteger& x) {
- string s;
- if(!(in >> s)) return in;
- x = s;
- return in;
- }
- int main() {
- BigInteger a, tmp;
- tmp = 2;
- string str;
- char s[maxn];
- while(cin >> str) {
- a = str;
- a = tmp * a;
- int cur = 1;
- for(int i = a.s.size()-1; i >= 0; --i) {
- s[cur++] = a.s[i] + '0';
- }
- cout << a.SQRT(s) << "\n";
- }
- return 0;
- }
如有不当之处欢迎指出!
URAL - 1153 Supercomputer 大数开方的更多相关文章
- ural 1153. Supercomputer
1153. Supercomputer Time limit: 2.0 secondMemory limit: 64 MB To check the speed of JCN Corporation ...
- Java中利用BigInteger类进行大数开方
在Java中有时会用到大数据,基本数据类型的存储范围已经不能满足要求了,如要对10的1000次方的这样一个数据规模的数进行开方运算,很明显不能直接用Math.sqrt()来进行计算,因为已经溢出了. ...
- ACM-ICPC2018焦作网络赛 Participate in E-sports(大数开方)
Participate in E-sports 11.44% 1000ms 65536K Jessie and Justin want to participate in e-sports. E- ...
- 蓝桥杯T126(xjb&大数开方)
题目链接:http://lx.lanqiao.cn/problem.page?gpid=T126 题意:中文题诶- 思路:显然被翻转了奇数次的硬币为反面朝上,但是本题的数据量很大,所以O(n^2)枚举 ...
- JAVA 大数开方模板
JAVA 大数开方模板 import java.math.BigInteger; import java.math.*; import java.math.BigInteger; import jav ...
- 大数开方 ACM-ICPC 2018 焦作赛区网络预赛 J. Participate in E-sports
Jessie and Justin want to participate in e-sports. E-sports contain many games, but they don't know ...
- ACM-ICPC 2018 焦作赛区网络预赛 J Participate in E-sports(大数开方)
https://nanti.jisuanke.com/t/31719 题意 让你分别判断n或(n-1)*n/2是否是完全平方数 分析 二分高精度开根裸题呀.经典题:bzoj1213 用java套个板子 ...
- Very simple problem - SGU 111(大数开方)
分析:使用的是构造新数字法进行不断构造,然后逼近每一位数字,然后使用c++徒手敲了240多行代码,竟然过了........................很有成就感. 代码如下: ========== ...
- 大数模板(Java)
大数加法 /* 给出2个大整数A,B,计算A+B的结果. Input 第1行:大数A 第2行:大数B (A,B的长度 <= 10000 需注意:A B有可能为负数) Output 输出A + B ...
随机推荐
- 用SecureCRT来上传和下载文件
用SSH管理linux服务器时经常需要远程与本地之间交互文件.而直接用SecureCRT自带的上传下载功能无疑是最方便的,SecureCRT下的文件传输协议有ASCII.Xmodem.Zmodem. ...
- Linux指令--rm, rmdir
rm是常用的命令,该命令的功能为删除一个目录中的一个或多个文件或目录,它也可以将某个目录及其下的所有文件及子目录均删除.对于链接文件,只是删除了链接,原有文件均保持不变.rm是一个危险的命令,使用的时 ...
- java虚拟机和java内存区域概述
什么是虚拟机,什么是Java虚拟机 虚拟机 定义:模拟某种计算机体系结构,执行特定指令集的软件 系统虚拟机(Virtual Box.VMware),进程虚拟机 进程虚拟机 jvm.Adobe Flas ...
- DNS入门
引言 常见的计网协议通过IP地址来识别分布式应用的主机,然而IPV4(特别是IPV6)的地址太繁琐难以使用和记忆,因此提出了使用主机名称来识别,实质是:主机名称通过称为名称解析的过程转换为IP地址.其 ...
- maven的聚合和继承
Maven的聚合特性能够把项目的各个模块聚合在一起构建: 而Maven的继承特性则能帮组抽取各模块相同的依赖和插件等配置,在简化POM的同时,还能促进各个模块配置的一致性. 聚合:新建一个项目demo ...
- SSE图像算法优化系列十五:YUV/XYZ和RGB空间相互转化的极速实现(此后老板不用再担心算法转到其他空间通道的耗时了)。
在颜色空间系列1: RGB和CIEXYZ颜色空间的转换及相关优化和颜色空间系列3: RGB和YUV颜色空间的转换及优化算法两篇文章中我们给出了两种不同的颜色空间的相互转换之间的快速算法的实现代码,但是 ...
- lvs_dr
lvs_dr 实验需求(4台虚拟机) eth0 192.168.1.110 单网卡 client(可以使用windows浏览器代替,但会有缓存影响) eth0 192.168.1.186 单网卡 di ...
- 让Python支持中文注释
在第一行中加入如下行即可,表示文件的编码: #coding=utf-8 或 #coding=gbk
- PHP使用file_get_contents或curl请求https的域名内容为空或Http 505错误的问题排查方法
前段日子,突然接到用户的反馈,说系统中原来的QQ登录.微博登录通通都不能用,跟踪代码进去后发现,是在 file_get_contents这个函数请求QQ登录的地方报错,在用该函数file_get_co ...
- CentOS(Linux)下安装dmidecode包
安装代码: yum install dmidecode 安装完成后,查看总体信息: dmidecode 查看服务器类型,测试环境为DELL R610: dmidecode -s system-prod ...