45

我写了一个c++程序,我想知道如何计算执行时间,这样我就不会超过时间限制。

#include<iostream>

using namespace std;

int main ()
{
    int st[10000],d[10000],p[10000],n,k,km,r,t,ym[10000];
    k=0;
    km=0;
    r=0;
    scanf("%d",&t);
    for(int y=0;y<t;y++)
    {
    scanf("%d",&n);
    for(int i=0;i<n;i++)
    {
            cin>>st[i] >>d[i] >>p[i];
    }
    for(int i=0;i<n;i++)
    {
            for(int j=i+1;j<n;j++)
            {
                    if((d[i]+st[i])<=st[j])
                    {
                              k=p[i]+p[j];
                    }
                    if(k>km)
                    km=k;
            }
        if(km>r)
        r=km;
    }
    ym[y]=r;
}
    for( int i=0;i<t;i++)
    {
         cout<<ym[i]<<endl;
    }


    //system("pause");
    return 0;
}     

这是我的程序,我希望它在 3 秒的时间限制内!怎么做 ?是的,对不起,我的意思是执行时间!

4

8 回答 8

127

如果你安装了 cygwin,从它的 bash shell,运行你的可执行文件,比如说MyProgram,使用time实用程序,像这样:

/usr/bin/time ./MyProgram

这将报告您的程序的执行花费了多长时间——输出如下所示:

real    0m0.792s
user    0m0.046s
sys     0m0.218s

您还可以手动修改您的 C 程序以使用clock()库函数对其进行检测,如下所示:

#include <time.h>
int main(void) {
    clock_t tStart = clock();
    /* Do your stuff here */
    printf("Time taken: %.2fs\n", (double)(clock() - tStart)/CLOCKS_PER_SEC);
    return 0;
}
于 2009-05-18T09:56:36.453 回答
44

使用 C++11 来测量一段代码的执行时间,我们可以使用 now() 函数:

auto start = chrono::steady_clock::now();

//  Insert the code that will be timed

auto end = chrono::steady_clock::now();

// Store the time difference between start and end
auto diff = end - start;

如果要在上面的代码中打印开始和结束之间的时间差,可以使用:

cout << chrono::duration <double, milli> (diff).count() << " ms" << endl;

如果您更喜欢使用纳秒,您将使用:

cout << chrono::duration <double, nano> (diff).count() << " ns" << endl;

diff 变量的值也可以截断为整数值,例如,如果您希望结果表示为:

diff_sec = chrono::duration_cast<chrono::nanoseconds>(diff);
cout << diff_sec.count() << endl;

更多信息请点击这里

于 2017-12-19T13:27:00.427 回答
18

概述

我为此使用@AshutoshMehra响应编写了一个简单的语义破解。这样你的代码看起来真的很可读!

#include <time.h>

#ifndef SYSOUT_F
#define SYSOUT_F(f, ...)      _RPT1( 0, f, __VA_ARGS__ ) // For Visual studio
#endif

#ifndef speedtest__             
#define speedtest__(data)   for (long blockTime = NULL; (blockTime == NULL ? (blockTime = clock()) != NULL : false); SYSOUT_F(data "%.9fs", (double) (clock() - blockTime) / CLOCKS_PER_SEC))
#endif

用法

speedtest__("Block Speed: ")
{
    // The code goes here
}

输出

Block Speed: 0.127000000s
于 2014-01-24T07:46:15.193 回答
10

注意:这个问题最初是关于编译时间的,但后来发现 OP 真的意味着执行时间。但也许这个答案对某人仍然有用。

对于 Visual Studio:转到Tools / Options / Projects and Solutions / VC++ Project Settings并将Build Timing选项设置为“ yes”。之后,每个构建的时间将显示在“输出”窗口中。

于 2009-05-18T09:56:44.940 回答
3

这看起来像 Dijstra 的算法。在任何情况下,运行所需的时间将取决于 N。如果需要超过 3 秒,我看不到任何加速它的方法,因为它正在进行的所有计算都需要完成。

根据您要解决的问题,可能会有更快的算法。

于 2009-05-18T13:01:28.670 回答
0

我已经使用了上面说的技术,但我仍然发现Code:Blocks IDE中给出的时间或多或少与获得的结果相似——(可能会相差几微秒)..

于 2013-04-08T04:07:42.817 回答
0

如果您使用的是 C++,那么您应该尝试下面的代码,因为如果您直接使用@Ashutosh Mehra 的答案,您总是会得到 0 作为答案

#include <iostream>
#include <time.h>

using namespace std;

int main() {
    int a = 20000, sum=0;
    
    clock_t start = clock();
    for (int i=0; i<a; i++) {
        for (int k = 0; k<a; k++)
            sum += 1;
    }
    cout.precision(10);
    cout << fixed <<  float(clock() - start)/CLOCKS_PER_SEC  << endl;
    return 0;
}

因为在 C++ 中,浮点和双精度值将直接四舍五入。所以我使用 将cout.precision(10)任何值的输出精度设置为小数点后 10 位。

于 2021-06-26T16:52:59.247 回答
0

您可以尝试以下 C++ 代码:

#include <chrono>


auto start = std::chrono::system_clock::now();
// Your Code to Execute //
auto end = std::chrono::system_clock::now();
std::cout << std::chrono::duration_cast<std::chrono::milliseconds>(end - start).count() << "ms" << std::endl;
于 2021-08-30T10:40:53.660 回答