E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
Exponentiation
shell中的运算符
prefixandpostfix)―Decrementbyone(prefixandpostfix)+Plus-Minus*Multiplication/Division(withtruncation)%Remainder**
Exponentiation
liangxiaowei66
·
2014-04-11 14:11
shell中的运算符
shell中的运算符
prefixandpostfix)—Decrementbyone(prefixandpostfix)+Plus-Minus*Multiplication/Division(withtruncation)%Remainder**
Exponentiation
liangxiaowei66
·
2014-04-11 14:11
shell中的运算符
POJ 1001 & UVa 748 -
Exponentiation
in JAVA
之前用C++写过,各种辛酸泪.今天用JAVA试了一下....(╯‵□′)╯ ┴─┴ 谁用谁知道.主要是算出来后要用.toPlainString.repalceAll(^0,"")去掉科学计数法和最前面的0.importjava.io.*; importjava.math.*; importjava.util.*; importjava.text.*; publicclassMain { publi
u014247806
·
2014-04-04 17:00
ACM
poj
UVa 748 -
Exponentiation
题目链接:UVa748-
Exponentiation
求一个小数的幂,说白了就是先记下来小数点的位置,然后使用使用高精度连乘,估计这里可以使用快速幂,嫌麻烦没试。。最后添加上小数点就可以了。
fobdddf
·
2014-02-27 11:00
748 -
Exponentiation
题目:748-
Exponentiation
题目大意:高精度数乘方解题思路:先记录小数点的位置,然后去掉前导0,和后面不需要的0,注意数组大小不要开得正好,否则会出现一些不可预知的错误;#include
u012997373
·
2013-12-18 20:00
POJ题目解题报告大全(Java)[1]
POJ1001
Exponentiation
[解题报告]JavaPOJ1002487-3279[解题报告]JavaPOJ1003Hangover[解题报告]JavaPOJ1004FinancialManagement
从此醉
·
2013-11-12 13:00
java
人工智能
北大OJ 1001题
Exponentiation
作者:林子木大体思路就是用递归的方法求幂的次数其中乘法,使用大数乘法的原理,不拘泥本题的六位的输入 其中整型字符串和字符串转整型采用自己写的函数,如果使用系统自带的,速率会跟高些。AC的时间是16MS内存是232K这里的主要问题是有块内存不能释放在,在注释的//free(s2);//free(s1);这里的内存指向是最后的char*Int2Str(int*n,intlen)中产生的内存char*M
wolinxuebin
·
2013-10-25 20:00
UVa 748 / POJ 1001
Exponentiation
(浮点高精度求幂&正则表达式的应用)
748-ExponentiationTimelimit:3.000secondshttp://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=97&page=show_problem&problem=689http://poj.org/problem?id=1001Problemsinvolvingthe
synapse7
·
2013-10-20 23:00
java
正则表达式
ACM
uva
POJ练习——1001
Exponentiation
题目:DescriptionProblemsinvolvingthecomputationofexactvaluesofverylargemagnitudeandprecisionarecommon.Forexample,thecomputationofthenationaldebtisataxingexperienceformanycomputersystems. Thisproblemrequ
copica
·
2013-10-13 00:00
[POJ][1001]
Exponentiation
DescriptionProblemsinvolvingthecomputationofexactvaluesofverylargemagnitudeandprecisionarecommon.Forexample,thecomputationofthenationaldebtisataxingexperienceformanycomputersystems.Thisproblemrequires
Shawon
·
2013-10-04 11:55
OJ
Report
ACM 1001
Exponentiation
高精度幂浮点型的运算
好久没上帖了,现在把昨天一个晚上和今天一上午的努力写出来,大家互相交流下。题目的描述我就直接COPY了:ExponentiationTimeLimit: 500MS MemoryLimit: 10000KTotalSubmissions: 121122 Accepted: 29574DescriptionProblemsinvolvingthecomputationofexactvaluesofv
q745401990
·
2013-08-17 11:00
C++
算法
ACM
HDU 1063
Exponentiation
(Java的大数处理)
ExponentiationTimeLimit:1000/500MS(Java/Others) MemoryLimit:65536/32768K(Java/Others)TotalSubmission(s):5665 AcceptedSubmission(s):1557ProblemDescriptionProblemsinvolvingthecomputationofexactval
opm777
·
2013-08-15 19:00
java
数学
HDU
UVa748 -
Exponentiation
题目地址:点击打开链接 把浮点数当成整数来乘,最后再加上小数点即可。 C++代码: #include <cstdio> #include <cstring> const int maxnum=100000; char s1[maxnum],s2[maxnum],ans[maxnum],temps[maxnum]; void add(char s
·
2013-08-12 19:00
exp
【索引】Big Number
) Volume1.ElementaryProblemSolving::BigNumber424-IntegerInquiry10106-Product465-Overflow748-
Exponentiation
10494
u011328934
·
2013-08-09 10:00
快速幂取模
Modular-
Exponentiation
(a,b,n) 1.c=0 2.d=1 3.设是b的二进制表示 4.fori=kdownt
corncsd
·
2013-08-02 15:00
UVA748
Exponentiation
题意:算出浮点数的次方思路:先把小数点处理掉,当成整数,记录小数点在最后输出的位置 就是高精度乘法了,只是要算n次而已,不过高精度麻烦的要死。。。。。。。#include #include #include #include usingnamespacestd; #defineN300 intsum[N],a[N],b[N]; intnum; intmain(){ cha
u011345461
·
2013-07-21 09:00
uva 748
Exponentiation
(高精度实数乘法)
题目链接:748-
Exponentiation
题目大意:高精度求次幂。解题思路:先将小树点剔除,记录小数点的位数。
u011328934
·
2013-07-20 21:00
light Oj 1172 二维DP+矩阵 UVa中等题
user_id=8459&category=Matrix%20
Exponentiation
花了1天多的时间,终于把lightOJ矩阵题切的只剩一题了,最后一题只有1人AC,我想了不多不少的时间还是没有什么思路
c3568
·
2013-07-17 22:00
大数乘法 748 -
Exponentiation
UVaOJ
Exponentiation
Problemsinvolvingthecomputationofexactvaluesofverylargemagnitudeandprecisionarecommon.Forexample
SIOFive
·
2013-07-09 11:00
String
大数运算
[置顶] 【POJ】1001
Exponentiation
DescriptionProblemsinvolvingthecomputationofexactvaluesofverylargemagnitudeandprecisionarecommon.Forexample,thecomputationofthenationaldebtisataxingexperienceformanycomputersystems. Thisproblemrequire
MrKnight
·
2013-04-25 19:00
java
poj
1001
Exponentiation
POJ-北大acm 1001
exponentiation
解题报告与bug
严格来说本解法不能算大数相乘的通用算法,而只是针对题目中(0.099999),然后把每次乘积累加到结果数组中,算法比较简单. 同时,发现POJ本题的审核程序有bug.题目要求对尾部(trailing)无效的0不能打印出来,但实际审核时没有这么严谨,可能是测试数据没有涵盖所有边界或者其它原因.具体情况是:对小于0的结果打印时不去掉尾部的0,审核程序依然accepted.举个例子, 对于小于
Honghe
·
2013-04-17 21:00
POJ-1001
Exponentiation
高精度
计算大实数R^n的值。importjava.io.*; importjava.math.*; importjava.util.*; importjava.text.*; publicclassMain{ publicstaticvoidmain(String[]args){ Scannercin=newScanner(System.in); BigDecimalnum;//定义一个大实数 int
yew1eb
·
2013-04-13 20:00
poj1001
Exponentiation
poj1001
Exponentiation
大说乘法运算,Java中有BigDecimal类支持,关键是格式要求。java中应该有专门处理格式的类吧,不过我这里用的是最原始的格式处理方式——字符串拆分。
HooLee
·
2013-03-15 22:00
hdu 1063 poj 1001
Exponentiation
(幂)
将其转化为整数的大数乘法。#include #include /********************************************************/ voidrever(char*res){ //????????? intres_len=strlen(res); for(inti=1,j=0;i'9'){ res[i]-=10; res[i+1]+=1; } } i
y11201
·
2013-02-18 16:00
poj 1001
Exponentiation
大晚上,不想打DOTA,不想看视频,所以就随便A点题了,木哈哈,其实这种高精度的计算我以前还基本没写过,虽然也知道基本的思维是将数存在数组中,但是不知道具体怎么存的,在结合网上代码上,很快就学会了,其实很简单,核心算法就是乘法法则的实现,然后是各种前导0和去尾0的问题了。解决了以上问题,很快就把题A了。这是AC代码:#include #include #include #include u
sp6645597
·
2012-12-22 00:00
poj 1001 --
Exponentiation
(大数计算,模拟)
题目是要求浮点数R的n次方,其中0.0 #include #include usingnamespacestd; voidf(inta[],intx,intn); intmain() { chara[10];//保存输入的一行 intn=0;//阶数 intdot=0;//存点的位置 while(gets(a)) { for(dot=0;a[dot]!='.';dot++);//找到小数点的位置
dlut_ju
·
2012-12-17 12:00
MILLER_RABIN素数判定法
//MILLER_RABIN素数判定法 #include usingnamespacestd; #include #include #include intMODULAR_
EXPONENTIATION
猫王
·
2012-12-02 18:00
算法
素数判定
[poj] 1001
Exponentiation
DescriptionProblemsinvolvingthecomputationofexactvaluesofverylargemagnitudeandprecisionarecommon.Forexample,thecomputationofthenationaldebtisataxingexperienceformanycomputersystems. Thisproblemrequire
qiuchenl
·
2012-11-23 16:00
POJ1001
Exponentiation
这个题目就是计算R的n次幂,poj中高精度浮点类型的计算对于java来说太简单了。代码如下: import java.math.BigDecimal; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner
翼若云
·
2012-11-21 15:00
java
算法
ACM
poj
POJ 題目分類
简单题1000A+BProblem 1001
Exponentiation
1003Hangover1004FinancialManagement1005IThinkINeedaHouseboat1005Biorhythms1007DNASorting1013CounterfeitDollar1014Dividing1032Parliament1045BodePlot1119StartUptheSta
電泡泡
·
2012-09-26 17:00
【索引】Big Number
RujiaLiu)::Volume1.ElementaryProblemSolving::BigNumber424-IntegerInquiry10106-Product465-Overflow748-
Exponentiation
10494
Ra_WinDing
·
2012-09-12 22:00
UVaOJ 748 -
Exponentiation
——byACodeRabbitDescription输入R和n,求出R^n。TypeBigNumberAnalysis一道各个OJ几乎都有的高精度题目。可以直接用Java的BigDecimal类来撸。要学习一定的Java基础。两个比较少用的函数要注意:stripTrailingZeros()如函数名所意,可以用来去除尾部的零,但是对形如0.00这样的数无效。replaceAll()函数可以用来把特
Ra_WinDing
·
2012-09-11 21:00
POJ 题目分类
POJ题目分类1000 A+BProblem 送分题1001
Exponentiation
高精度1003 Hangover 送分题
香草天空
·
2012-06-15 08:00
poj 1001
Exponentiation
java解决!!!
下午刚刚开始学习java,还是切题练的快!!参考bloghttp://blog.sina.com.cn/s/blog_694034130100wpxj.htmlimportjava.math.BigDecimal; importjava.util.Scanner; publicclassMain{ publicstaticvoidmain(String[]args){ Scannerin=newS
youngyangyang04
·
2012-06-14 01:00
java
String
Class
uva748 -
Exponentiation
Problemsinvolvingthecomputationofexactvaluesofverylargemagnitudeandprecisionarecommon.Forexample,thecomputationofthenationaldebtisataxingexperienceformanycomputersystems.Thisproblemrequiresthatyouwrit
Frankiller
·
2012-06-08 17:00
poj1001
Exponentiation
高精度幂运算
时隔半年,终于AC了,加油!#include #include usingnamespacestd; voidmulti(int*,int*,int[]); intmain(){ inta[100]; intb[100]; intc[100]; chars[100]; intn; while(cin>>s>>n){ for(inti=0;i-1;--j)if(a[j]!=0)break; if
iwebcode
·
2012-06-01 19:00
exp
poj1001
Exponentiation
高精度幂运算
时隔半年,终于AC了,加油!#include #include usingnamespacestd; voidmulti(int*,int*,int[]); intmain(){ inta[100]; intb[100]; intc[100]; chars[100]; intn; while(cin>>s>>n){ for(inti=0;i-1;--j)if(a[j]!=0)break; if
atupal
·
2012-06-01 19:00
c
POJ1001·
Exponentiation
DescriptionProblemsinvolvingthecomputationofexactvaluesofverylargemagnitudeandprecisionarecommon.Forexample,thecomputationofthenationaldebtisataxingexperienceformanycomputersystems.Thisproblemrequires
OldPanda
·
2012-05-31 20:00
Poj 1001
Exponentiation
(模拟)
题目链接:http://poj.org/problem?id=1001题目大意:给定一个0.0-99.999之间的数R,再给定一个n,问R^n等于多少?如果整数部分为0,则0不输出,如果小数部分末尾为0,则不输出0,如果小数点后面都没数,不输出小数点。解题思路:刚做完四级听力,发现做20道,对了3道,没有勇气再听下去,所以来切水题。本来想切几题再睡的,没想到第一题就是比较复杂的模拟,模拟计算小数的
woshi250hua
·
2012-05-23 01:00
测试
HDU 1063
Exponentiation
/* 题意:输入一个小数R,一个整数N,输出R^N 思路:将小数转换成整数然后求出R^N,然后判断出小数点的位置进行输出。 方法一通过,但是方法二我不知道那里有错误!只是输入方式不同而已,难道测试数据中存在空行? */ //方法一: #include #include constintnMax=200; structBigNumber { intdata[nMax]; intlen; BigN
lhshaoren
·
2012-05-16 16:00
struct
测试
memo:PostgreSQL常用数学运算符和函数
subtraction2-3-1*multiplication2*36/division(integerdivisiontruncatestheresult)4/22%modulo(remainder)5%41^
exponentiation
2.0
hantiannan
·
2012-05-15 16:00
table
Integer
less
Random
input
PostgreSQL
POJ题型分析
1000 A+BProblem 送分题1001
Exponentiation
高精度1003 Hangover 送分题1004
woaixiaozhe
·
2012-05-11 11:00
数据结构
calendar
Random
sorting
Numbers
Intervals
POJ_1001
Exponentiation
http://poj.org/problem?id=1001/* Description: 基本思想很简单:把double型当做字符串进行读入,然后提取出double的各个数到int型 数组中,模拟手算进行大整数乘法。 注意:要事先计算出小数点的位置,输出的时候加以控制即可!*/#include#include#include#include#include#include#includeu
东方快翔
·
2012-04-12 11:05
POJ1001
Exponentiation
POJ 1001
Exponentiation
高精度计算,用一个类来实现,提交时N次表达错误,改了N次才成功。。。。 #include#includeusingnamespacestd;#defineMAX126classNum{public: intnums[MAX]; intlength; intdec; Num(strings); voidmul(Numm); voidformat();};Num::Num(strings){ int
tobacco5648
·
2012-04-07 22:00
String
Class
ini
n2
POJ1001
Exponentiation
,高精度乘法
题目:给定R和n,0.0 #defineN150 chars[6]; charr[6]; charn; chardecimal=0; charresult[N]={0}; chartemp[N]={0}; voidinitArray(char*a,intn) { inti; for(i=0;i=0&&a[i]==0;i--); returni; } voidadjust(char*a) {
lijiecsu
·
2012-03-22 13:00
hdu-1063
Exponentiation
大数问题
这个题题意很简单,求浮点数R的N次方。刚看到这个题,直接就开数组模拟大数乘法,写了半天Memory LimitedExceed.不过由此知道了int型数组的最大长度是8*10^7,char型2*10^7后来就想到了数据不会太多,就转成了每输入一次,计算一次。写呀写呀,一直WA。各种特殊数据嗄。写的头大。删了重写了很多次。也许是以前写题的时候没有全心的投入吧,细节的部分一多就会慌张,一慌张就思绪集中
hss871838309
·
2012-03-02 17:00
1001
Exponentiation
import java.util.*; import java.math.*; public class Main { public static void main(String[] args) throws Exception { Scanner cin = new Scanner(System.in); while(cin.hasNext(
s1099
·
2012-02-25 17:00
java
poj
1001
poj 1001
Exponentiation
五个小时。。。回来重写
#include #include constintMAXN=10000; intsum[MAXN],sum1[MAXN]; voidCarry(intlen) { intc=0,i; for(i=0;i='0'&&ch[7]=0;j--) if(ch1[j]!='0')break; intk2=j; if(ch1[k1]=='.')//若为1.00000的情况 for
Tdreamge
·
2012-02-15 15:00
Exponentiation
大实数乘法
Description Problems involving the computation of exact values of very large magnitude and precision are common. For example, the computation of the national debt is a taxing experience for many co
lethorld
·
2012-01-29 10:00
exp
poj 1001
Exponentiation
好久没有敲代码了,这么水的一题我敲了2个小时==!主要考察高精度算法,注意判定条件,给定小数位,什么时候改把零省略,什么时候不可以。只有是在整数部分的前置零可以省略,结尾的零最后输出地时候处理一下。写得好丑啊~~~~#include#include#includeusingnamespacestd;constintN=200;class Bign{public:Bign(){count=dot=0
sysucph
·
2012-01-16 15:00
上一页
1
2
3
4
5
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他