繁体   English   中英

C ++和python中的算法相同,但输出不同

[英]Same algorithm in c++ and python but different output

C ++

#include<iostream>
#include<cstdio>
#include<cmath>
using namespace std;
unsigned long long int t,n,i,m,su,s,k;
int main()
{
        cin>>n;
        if(n==0)
        {
            cout<<"0\n";
            return 0;
        }
        m = sqrt(n);
        su = m*(m+1)/2;
        s = n-1;
        for(i=2;i*i<=n;i++)
        {
            k = n/i;
            s = s + (k-1)*i + k*(k+1)/2 - su;
        }
        cout<<s<<"\n";
}

蟒蛇

import math
n = int(input())
if n==0:
    print('0')
else:
    m = int(math.sqrt(n))
    su = int(m*(m+1)/2)
    s = n-1
    i=2
    while i*i<=n:
        k = int(n/i)
        s = s + ((k-1)*i) + int(k*(k+1)/2) - su
        i = i+1
    print(s)

答案不同1000000000
对于C ++代码输出= 322467033612360628
对于python代码输出= 322467033612360629
为什么答案不同? 我不认为这是C ++整数溢出引起的,因为在64位环境中,无符号long long int范围为18,446,744,073,709,551,615

编辑:删除了造成混乱的变量

这与Python 3与Python 2中除法运算符变化有关。

在Python 2中,如果分子和分母都是整数,则/是整数下位除法:

Python 2.7.1 (r271:86882M, Nov 30 2010, 10:35:34) 
[GCC 4.2.1 (Apple Inc. build 5664)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> 2/3
0
>>> 2.0/3.0
0.6666666666666666
>>> 
>>> 1/2 == 1.0 / 2.0
False

请注意,在Python 2中,如果分子或分母都是浮点数,则结果将是浮点数。

但是Python 3将/更改为'True Division',并且您需要使用//来获得整数底除:

Python 3.3.2 (default, May 21 2013, 11:50:47) 
[GCC 4.2.1 Compatible Apple Clang 4.1 ((tags/Apple/clang-421.11.66))] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> 2/3
0.6666666666666666
>>> 2//3
0
>>> 1/2 == 1.0/2.0
True
>>> 1//2 == 1.0/2.0
False

C ++在整数之间使用地板除法:

int main()
{
    int n=2;
    int d=3;
    cout<<n/d;    // 0
}

如果我运行以下代码(改编自您的代码):

from __future__ import print_function

import math
n = 1000000000
if n==0:
    print('0')
else:
    m = int(math.sqrt(n))
    su = int(m*(m+1)/2)
    s = n-1
    i=2
    while i*i<=n:
        k = int(n/i)
        s = s + ((k-1)*i) + int(k*(k+1)/2) - su
        i = i+1
    print(s)

在Python 3下,我得到:

322467033612360629

在Python 2下,我得到:

322467033612360628

如果更改此行:

s = s + ((k-1)*i) + int(k*(k+1)/2) - su

s = s + ((k-1)*i) + int(k*(k+1)//2) - su # Note the '//'

它将解决Python 3下的问题

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM