关于对拍

学术版

Joe2011 @ 2024-11-29 20:28:45

目前本人的对拍板子并没有关于时间的处理,求如何在对拍程序中计算程序运行时间(比较简便的


by _cbw @ 2024-11-29 20:30:25

chrono::steady_clock


by Joe2011 @ 2024-11-29 20:31:13

@_cbw thx


by junee @ 2024-11-29 20:31:39

#include<iostream>
#include<iomanip>
#include<cstring>
#include<algorithm>
#include<cmath>
#include<random>
#include<chrono>
using namespace std;
mt19937_64 rnd(chrono::steady_clock::now().time_since_epoch().count());
typedef long long LL;
int main(){
    ios::sync_with_stdio(false);
    cin.tie(0),cout.tie(0);
    system("gen.exe");
    double st=clock();
    system("std.exe");
    double ed=clock();
    cout<<ed-st<<"ms";

    return 0;
}

by Joe2011 @ 2024-11-29 20:34:00

@junee ?这个clock()是哪儿来的???


by Joe2011 @ 2024-11-29 20:34:44

@junee 和chrono::steady_clock::now()等价吗?


by junee @ 2024-11-29 20:36:42

@Joe2011 什么意思?这个函数是 <time.h> 的。


by junee @ 2024-11-29 20:37:07

@Joe2011 我那个是随机种子,你可以不写


by Joe2011 @ 2024-11-29 20:41:07

@junee 哦好好好


|